bigbluebutton-Github/build/packages-template/bbb-webhooks/before-install.sh
Anton Georgiev 8674cf7615 !build: remove config storing to /tmp when upgrading a package
Remaining, to be handles separately:
bbb-html5 before-remove and after-install -- sip.nginx needs to be
handled in bbb-conf
bbb-freeswitch-core -- /tmp/vars xml, etc. -- not sure how to handle
2022-02-27 19:08:25 +00:00

16 lines
156 B
Bash
Executable File

#!/bin/bash -e
case "$1" in
install|upgrade|1|2)
;;
abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 1
;;
esac