:: [DNG] Tips about eudev
Top Page
Delete this message
Reply to this message
Author: aitor_czr
Date:  
To: dng
Subject: [DNG] Tips about eudev
Hi all,

The function:

kill_udevd() {
    start-stop-daemon --stop --name udevd --user root --pidfile
/run/udev.pid
    --remove-pidfile --oknodo --quiet --retry 5
}

located in debian/eudev.prerm throws the following error:

"... No udevd found running; none killed."

It should be replaced by:

kill_udevd() {
    start-stop-daemon --stop --name udevd --user root --pidfile
/run/udev.pid \
    --remove-pidfile --oknodo --quiet --retry 5
}

Note the missing symbol '\' in the first expresion.

Cheers,

Aitor.

(To be continued)