45 lines
617 B
Bash
Executable File
45 lines
617 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# chkconfig: 345 90 90
|
|
# description: Executes Qubes core scripts at NetVM boot
|
|
#
|
|
# Source function library.
|
|
. /etc/rc.d/init.d/functions
|
|
|
|
# Source Qubes library.
|
|
. /usr/lib/qubes/init/functions
|
|
|
|
start()
|
|
{
|
|
have_qubesdb || return
|
|
|
|
if is_netvm; then
|
|
/usr/lib/qubes/network-manager-prepare-conf-dir
|
|
/sbin/service NetworkManager start
|
|
fi
|
|
|
|
echo -n $"Executing Qubes Core scripts NetVM:"
|
|
/usr/lib/qubes/init/network-proxy-setup && success || failure
|
|
echo
|
|
}
|
|
|
|
stop()
|
|
{
|
|
return 0
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
*)
|
|
echo $"Usage: $0 {start|stop}"
|
|
exit 3
|
|
;;
|
|
esac
|
|
|
|
exit $RETVAL
|