12 lines
368 B
Bash
12 lines
368 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# This script will remove mail configuration, remove backup configuration, and force admin user to test/test
|
||
|
|
echo "Update prod to dev on BD '$1'"
|
||
|
|
|
||
|
|
./script/addons/install_addons.sh "$1" user_test,disable_mail_server,disable_auto_backup
|
||
|
|
|
||
|
|
retVal=$?
|
||
|
|
if [[ $retVal -ne 0 ]]; then
|
||
|
|
echo "Error install_addons.sh into update_prod_to_dev.sh"
|
||
|
|
exit 1
|
||
|
|
fi
|