8 lines
234 B
Bash
Executable File
8 lines
234 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
# Automatically added by dh_installinit/13.14.1ubuntu5
|
|
if [ "$1" = "install" ] && [ -n "$2" ] && [ -e "/etc/init.d/spamd" ] ; then
|
|
chmod +x "/etc/init.d/spamd" >/dev/null || true
|
|
fi
|
|
# End automatically added section
|