:: [DNG] Tips about eudev
Inizio della pagina
Delete this message
Reply to this message
Autore: aitor_czr
Data:  
To: dng
Oggetto: [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)