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

47 lines
1.1 KiB
Bash
Executable File

#!/bin/bash -e
BBB_USER=bigbluebutton
case "$1" in
configure|upgrade|1|2)
TARGET=/usr/local/bigbluebutton/core/scripts/podcast.yml
if [ -f $SERVLET_DIR/WEB-INF/classes/bigbluebutton.properties ]; then
HOST=$(cat $SERVLET_DIR/WEB-INF/classes/bigbluebutton.properties | sed -n '/^bigbluebutton.web.serverURL/{s/.*\///;p}')
else
HOST=$IP
fi
if [ -f $TARGET ]; then
yq w -i $TARGET playback_host $HOST
else
echo "No: $TARGET"
exit 1
fi
mkdir -p /var/bigbluebutton/published/podcast
chown -R $BBB_USER:$BBB_USER /var/bigbluebutton/published/podcast
chmod -R o+rx /var/bigbluebutton/published/
mkdir -p /var/log/bigbluebutton/podcast
chown -R $BBB_USER:$BBB_USER /var/log/bigbluebutton/podcast
mkdir -p /var/bigbluebutton/recording/publish/podcast
chown -R $BBB_USER:$BBB_USER /var/bigbluebutton/recording/publish/podcast
if [ -f /var/bigbluebutton/published/podcast/index.html ]; then
rm /var/bigbluebutton/published/podcast/index.html
fi
;;
failed-upgrade)
;;
*)
echo "## postinst called with unknown argument \`$1'" >&2
;;
esac