Ubuntu Pastebin

Paste from flambard`home at Thu, 31 Mar 2016 21:01:37 +0000

Download as text
 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
Download as text