bigbluebutton-Github/build/packages-template/bbb-playback-presentation/after-install.sh

42 lines
1.1 KiB
Bash
Raw Normal View History

2021-08-13 18:53:18 +08:00
#!/bin/bash -e
if [ -f /etc/redhat-release ]; then
DISTRIB_ID=centos
else
. /etc/lsb-release # Get value for DISTRIB_ID
fi
BIGBLUEBUTTON_USER=bigbluebutton
case "$1" in
configure|upgrade|1|2)
TARGET=/usr/local/bigbluebutton/core/scripts/presentation.yml
chmod +r $TARGET
mkdir -p /var/bigbluebutton/published/presentation
chown -R $BIGBLUEBUTTON_USER:$BIGBLUEBUTTON_USER /var/bigbluebutton/published/presentation
chmod -R o+rx /var/bigbluebutton/published/
mkdir -p /var/log/bigbluebutton/presentation
chown -R $BIGBLUEBUTTON_USER:$BIGBLUEBUTTON_USER /var/log/bigbluebutton/presentation
mkdir -p /var/bigbluebutton/recording/publish/presentation
chown -R $BIGBLUEBUTTON_USER:$BIGBLUEBUTTON_USER /var/bigbluebutton/recording/publish/presentation
if [ -f /var/bigbluebutton/published/presentation/index.html ]; then
rm /var/bigbluebutton/published/presentation/index.html
fi
;;
failed-upgrade)
;;
*)
echo "## postinst called with unknown argument \`$1'" >&2
;;
esac