diff options
Diffstat (limited to 'qtc_packaging/debian_harmattan/postinst')
-rw-r--r-- | qtc_packaging/debian_harmattan/postinst | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/qtc_packaging/debian_harmattan/postinst b/qtc_packaging/debian_harmattan/postinst new file mode 100644 index 0000000..c0a1855 --- /dev/null +++ b/qtc_packaging/debian_harmattan/postinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +#DEBHELPER# + +case "$1" in + configure) + start -v apps/sowatchd || : + ;; +esac + +exit 0 |