mirror of
https://github.com/hermensbas/azerothcore_installer.git
synced 2026-01-13 16:39:07 +00:00
19 lines
580 B
Bash
Executable File
19 lines
580 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#param 1
|
|
REALM_NAME=$1;
|
|
if [ -z "$REALM_NAME" ]
|
|
then
|
|
echo "First parameter 'REALM_NAME' is required";
|
|
exit 1;
|
|
fi
|
|
|
|
sed -e "s/{{REALM_NAME}}/$REALM_NAME/g" \
|
|
"${ROOT_DIR}/sql/update_realm_name.sql" > "/tmp/update_realm_name.sql"
|
|
sudo mysql -u root --database="acore_characters" < /tmp/update_realm_name.sql
|
|
|
|
echo " "
|
|
echo "###########################################################################################"
|
|
echo "Server realm NAME updated: ${REALM_NAME}"
|
|
echo "###########################################################################################"
|