core-agent-linux/vm-init.d/qubes-firewall
Marek Marczykowski-Górecki 8bb152f76e
init: fix issues found by shellcheck in init scripts
Most of them are missing quotes, `` -> $(), and -o/-a usage in
conditions. Also add few directives disabling checks where were too
verbose.
2017-09-30 04:49:21 +02:00

53 lines
857 B
Bash
Executable File

#!/bin/bash
#
# chkconfig: 345 92 92
# description: Starts Qubes Firewall monitor
#
# Source function library.
. /etc/rc.d/init.d/functions
# Source Qubes library.
. /usr/lib/qubes/init/functions
PIDFILE=/var/run/qubes/qubes-firewall.pid
start()
{
have_qubesdb || return
if qsvc qubes-firewall ; then
echo -n $"Starting Qubes Firewall monitor:"
/sbin/ethtool -K eth0 sg off
/usr/sbin/qubes-firewall &
success
echo ""
fi
}
stop()
{
if [ -r $PIDFILE ]; then
echo -n "Stopping Qubes Firewall monitor:"
# shellcheck disable=SC2015
kill -9 "$(cat "$PIDFILE")" 2>/dev/null && success || failure
echo ""
fi
return 0
}
case "$1" in
start)
start
;;
stop)
stop
;;
*)
echo $"Usage: $0 {start|stop}"
exit 3
;;
esac
# shellcheck disable=SC2086
exit $RETVAL