diff options
Diffstat (limited to 'debian.libreoffice/ishtar-libreoffice.postinst')
-rw-r--r-- | debian.libreoffice/ishtar-libreoffice.postinst | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/debian.libreoffice/ishtar-libreoffice.postinst b/debian.libreoffice/ishtar-libreoffice.postinst new file mode 100644 index 000000000..2ec25275f --- /dev/null +++ b/debian.libreoffice/ishtar-libreoffice.postinst @@ -0,0 +1,20 @@ +#!/bin/sh + +set -e + +case "$1" in + configure) + systemctl daemon-reload + systemctl enable libreoffice + systemctl start libreoffice + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac
\ No newline at end of file |