This repository has been archived by the owner on Apr 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
00-update-including-world-database-import.sh
executable file
·129 lines (94 loc) · 4.17 KB
/
00-update-including-world-database-import.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#!/bin/sh
# vmangos-docker
# Copyright (C) 2021-present Michael Serajnik https://github.com/mserajnik
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Replace if needed; e.g., to match your host user/group ID
user_id=1000
group_id=1000
# Replace with different client version, if required
# See https://github.com/vmangos/core#currently-supported-builds
client_version=5875
# Replace with a different world database import name in case there is an
# update
world_database_import_name=world_full_14_june_2021
# FIXME: Quick workaround to get this script working on macOS
if [ "$(uname)" = "Darwin" ]; then
alias nproc="sysctl -n hw.logicalcpu"
fi
begins_with() { case $2 in "$1"*) true;; *) false;; esac; }
get_script_path() {
if begins_with "/" "$1"; then
echo "$1"
else
echo "$PWD/${1#./}"
fi
}
repository_path=$(dirname "$(get_script_path "$0")")
cd "$repository_path"
echo "[VMaNGOS]: Stopping potentially running containers..."
docker compose down
echo "[VMaNGOS]: Removing (potentially existing) old build files..."
rm -rf ./vmangos/*
rm -rf ./src/ccache/*
echo "[VMaNGOS]: Updating submodules..."
git submodule update --init --remote --recursive
if [ "$1" ]; then
echo "[VMaNGOS]: Using VMaNGOS commit $1..."
cd ./src/core
git checkout $1
cd "$repository_path"
fi
echo "[VMaNGOS]: Building VMaNGOS..."
docker build \
--build-arg VMANGOS_USER_ID=$user_id \
--build-arg VMANGOS_GROUP_ID=$group_id \
--no-cache \
-t vmangos_build \
-f ./docker/build/Dockerfile .
docker run \
-v "$repository_path/vmangos:/vmangos" \
-v "$repository_path/src/database:/database" \
-v "$repository_path/src/world_database:/world_database" \
-v "$repository_path/src/ccache:/ccache" \
-e CCACHE_DIR=/ccache \
-e VMANGOS_CLIENT=$client_version \
-e VMANGOS_WORLD=$world_database_import_name \
-e VMANGOS_THREADS=$((`nproc` > 1 ? `nproc` - 1 : 1)) \
--rm \
vmangos_build
docker build \
--no-cache \
-t vmangos_extractors \
-f ./docker/extractors/Dockerfile .
echo "[VMaNGOS]: Merging database migrations..."
cd ./src/core/sql/migrations
./merge.sh
cd "$repository_path"
echo "[VMaNGOS]: Rebuilding containers..."
docker compose build --no-cache
echo "[VMaNGOS]: Recreating database container..."
docker compose up -d vmangos_database
echo "[VMaNGOS]: Waiting a minute for the database to settle..."
sleep 60
echo "[VMaNGOS]: Importing database updates..."
docker compose exec -T vmangos_database sh -c \
'[ -e /opt/vmangos/sql/world_database/$VMANGOS_WORLD.sql ] && mysql -u root -p$MYSQL_ROOT_PASSWORD < /sql/regenerate-world-db.sql && mysql -u root -p$MYSQL_ROOT_PASSWORD mangos < /opt/vmangos/sql/world_database/$VMANGOS_WORLD.sql'
docker compose exec -T vmangos_database sh -c \
'[ -e /opt/vmangos/sql/migrations/world_db_updates.sql ] && mysql -u root -p$MYSQL_ROOT_PASSWORD mangos < /opt/vmangos/sql/migrations/world_db_updates.sql'
docker compose exec -T vmangos_database sh -c \
'[ -e /opt/vmangos/sql/migrations/characters_db_updates.sql ] && mysql -u root -p$MYSQL_ROOT_PASSWORD characters < /opt/vmangos/sql/migrations/characters_db_updates.sql'
docker compose exec -T vmangos_database sh -c \
'[ -e /opt/vmangos/sql/migrations/logon_db_updates.sql ] && mysql -u root -p$MYSQL_ROOT_PASSWORD realmd < /opt/vmangos/sql/migrations/logon_db_updates.sql'
docker compose exec -T vmangos_database sh -c \
'[ -e /opt/vmangos/sql/migrations/logs_db_updates.sql ] && mysql -u root -p$MYSQL_ROOT_PASSWORD logs < /opt/vmangos/sql/migrations/logs_db_updates.sql'
docker compose down
echo "[VMaNGOS]: Update complete! You can now start VMaNGOS again by running \"00-start.sh\"."