1
2
3
4
5
6
7
8
9
10 | # Exit if the package is not installed [ -x "$DAEMON" ] || exit 0 # Exit if the configuration is missing [ -f "$DAEMON_CONFIG" ] || exit 0 # Read configuration variable file if it is present [ -r /etc/default/$NAME ] && . /etc/default/$NAME test "$ENABLED" != "0" || exit 0 |