tools/hotplug/Linux/init.d: fix wrong path in xendomains init
authorFabio Fantoni <fabio.fantoni@m2r.biz>
Fri, 8 Aug 2014 10:46:35 +0000 (12:46 +0200)
committerIan Campbell <ian.campbell@citrix.com>
Thu, 21 Aug 2014 22:32:43 +0000 (23:32 +0100)
Fixed wrong path in xendomains init that make it not working, introduced
in commit d8bad9df2544291a0fdc8e4d826b16f9f5394462 (tools/xendomains:
move to libexec and use a smaller init helper).

Signed-off-by: Fabio Fantoni <fabio.fantoni@m2r.biz>
Reviewed-by: Wei Liu <wei.liu2@citrix.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
tools/hotplug/Linux/init.d/xendomains

index d0122fcaa0951f0d959e57e81c4d01270f8453b0..385760267abfd2dbec8e25b01b7b57e972cc5ab1 100644 (file)
@@ -20,7 +20,7 @@
 # Short-Description: Wrapper to start/stop secondary xen domains
 # Description:       Wrapper for starting / stopping domains automatically
 #                    when domain 0 boots / shuts down on systems using init.
-#                    The $SBINDIR/xendomains helper is shared between init and
+#                    The $LIBEXEC/xendomains helper is shared between init and
 #                    systemd systems.
 ### END INIT INFO
 
 
 case "$1" in
     start)
-       $SBINDIR/xendomains start
+       $LIBEXEC/xendomains start
        ;;
     stop)
-       $SBINDIR/xendomains stop
+       $LIBEXEC/xendomains stop
        ;;
     restart)
-       $SBINDIR/xendomains restart
+       $LIBEXEC/xendomains restart
        ;;
     reload)
-       $SBINDIR/xendomains reload
+       $LIBEXEC/xendomains reload
        ;;
     status)
-       $SBINDIR/xendomains status
+       $LIBEXEC/xendomains status
        ;;
     *)
        echo "Usage: $0 {start|stop|restart|reload|status}"