From: greg@kroah.com Date: Tue, 16 Dec 2003 06:25:03 +0000 (-0800) Subject: [PATCH] Add restart target to the etc/init.d/udev script X-Git-Tag: 009~13 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=5a3ee97760a8882e22435ca6424c54af8d8782be;hp=dbc9b3f3a20520db6fcf791a3663ab943fc193d9 [PATCH] Add restart target to the etc/init.d/udev script Change made by Rolf Eike Beer --- diff --git a/etc/init.d/udev b/etc/init.d/udev index 5c09afd20..36ef2dafd 100644 --- a/etc/init.d/udev +++ b/etc/init.d/udev @@ -64,11 +64,15 @@ case "$1" in echo "the udev device node directory does not exist" fi ;; - restart|reload) + restart) + $0 stop + $0 start + ;; + reload) # nothing to do here ;; *) - echo "Usage: $0 {start|stop|status}" + echo "Usage: $0 {start|stop|status|restart}" exit 1 esac