mattermost/backup-mattermost.sh
2025-04-09 15:13:16 -04:00

16 lines
270 B
Bash

if [ "$1" == "pre-backup" ]; then
exit
fi
if [ "$1" == "pre-backup" ]; then
exit
fi
if [ "$1" == "pre-restore" ]; then
# kill the running plugins that need to be overwritten
pkill plugins
fi
if [ "$1" == "post-restore" ]; then
mmctl config reload --local
fi