bigbluebutton-Github/build/packages-template/bbb-export-annotations/after-install.sh
2022-07-13 01:35:17 +00:00

21 lines
441 B
Bash
Executable File

#!/bin/bash -e
case "$1" in
configure|upgrade|1|2)
if [ ! -f /.dockerenv ]; then
systemctl enable bbb-export-annotations.service
systemctl daemon-reload
startService bbb-export-annotations.service || echo "bbb-export-annotations service could not be registered or started"
fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac