2016-10-22 17:43:16 +02:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# chkconfig: 345 80 80
|
|
|
|
# description: Executes Qubes system initialization scripts at VM boot
|
|
|
|
#
|
|
|
|
|
|
|
|
# Source function library.
|
2017-09-30 04:56:02 +02:00
|
|
|
# shellcheck disable=SC1091
|
2016-10-22 17:43:16 +02:00
|
|
|
. /etc/rc.d/init.d/functions
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
|
|
|
echo -n $"Executing Qubes system initialization scripts:"
|
2017-09-30 04:49:21 +02:00
|
|
|
# shellcheck disable=SC2015
|
2016-10-22 17:43:16 +02:00
|
|
|
/usr/lib/qubes/init/qubes-sysinit.sh && success || failure ; echo
|
|
|
|
}
|
|
|
|
|
|
|
|
stop()
|
|
|
|
{
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
start)
|
|
|
|
start
|
|
|
|
;;
|
|
|
|
stop)
|
|
|
|
stop
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo $"Usage: $0 {start|stop}"
|
|
|
|
exit 3
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2017-09-30 04:49:21 +02:00
|
|
|
# shellcheck disable=SC2086
|
2016-10-22 17:43:16 +02:00
|
|
|
exit $RETVAL
|