diff options
Diffstat (limited to 'debian/smman.postinst')
-rw-r--r-- | debian/smman.postinst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/debian/smman.postinst b/debian/smman.postinst new file mode 100644 index 0000000..4ca8bbf --- /dev/null +++ b/debian/smman.postinst | |||
@@ -0,0 +1,10 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | set -e | ||
4 | case "$1" in | ||
5 | configure) | ||
6 | update-rc.d smman start 28 2 3 4 5 . stop 28 0 1 6 . | ||
7 | /etc/init.d/smman restart | ||
8 | ;; | ||
9 | esac | ||
10 | exit 0 | ||