bigbluebutton-Github/build/packages-template/bbb-playback-notes/after-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

36 lines
916 B
Bash
Executable File

#!/bin/bash -e
BIGBLUEBUTTON_USER=bigbluebutton
case "$1" in
configure|upgrade|1|2)
TARGET=/usr/local/bigbluebutton/core/scripts/notes.yml
chmod +r $TARGET
mkdir -p /var/bigbluebutton/published/notes
chown -R $BIGBLUEBUTTON_USER:$BIGBLUEBUTTON_USER /var/bigbluebutton/published/notes
chmod -R o+rx /var/bigbluebutton/published/
mkdir -p /var/log/bigbluebutton/notes
chown -R $BIGBLUEBUTTON_USER:$BIGBLUEBUTTON_USER /var/log/bigbluebutton/notes
mkdir -p /var/bigbluebutton/recording/publish/notes
chown -R $BIGBLUEBUTTON_USER:$BIGBLUEBUTTON_USER /var/bigbluebutton/recording/publish/notes
if [ -f /var/bigbluebutton/published/notes/index.html ]; then
rm /var/bigbluebutton/published/notes/index.html
fi
systemctl reload nginx
;;
failed-upgrade)
;;
*)
echo "## postinst called with unknown argument \`$1'" >&2
;;
esac