8 lines
146 B
Bash
Executable File
8 lines
146 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
if [ "$1" = "remove" ]; then
|
|
rm -fr /var/bigbluebutton/activity-report
|
|
rm -f /etc/bigbluebutton/nginx/activity-report.nginx
|
|
fi
|
|
|