1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-07 01:54:16 +01:00
fab-manager/scripts/rename-adminsys.sh

27 lines
577 B
Bash
Raw Normal View History

#!/usr/bin/env bash
config()
{
echo -ne "Checking env file... "
FABMANAGER_PATH=$(pwd)
if [ ! -w "$FABMANAGER_PATH/config/env" ]; then
echo "Fab-manager's environment file not found or not writable."
echo "Please run this script from the installation folder, and as a user having write access on config/env"
exit 1
fi
}
rename_var()
{
current=$(grep "SUPERADMIN_EMAIL=" "$FABMANAGER_PATH/config/env")
sed -i.bak "s/SUPERADMIN_EMAIL=$current/ADMINSYS_EMAIL=$current/g" "$FABMANAGER_PATH/config/env"
}
proceed()
{
config
rename_var
}
proceed "$@"