e1407149b9
* Introduce Gql-Middleware config as a yml file * use path /usr/share/bbb-graphql-middleware/ instead of /usr/local/bigbluebutton/bbb-graphql-middleware * remove /etc/default/bbb-graphql-middleware file
13 lines
251 B
Bash
13 lines
251 B
Bash
#!/bin/bash -e
|
|
|
|
case "$1" in
|
|
install|upgrade|1|2)
|
|
|
|
# the config is not longer env vars at /etc/default/bbb-graphql-middleware
|
|
if [ -f /etc/default/bbb-graphql-middleware ]; then
|
|
rm /etc/default/bbb-graphql-middleware
|
|
fi
|
|
|
|
;;
|
|
esac
|