|
10 | 10 | log_file="sentry_install_log-`date +'%Y-%m-%d_%H-%M-%S'`.txt" |
11 | 11 | exec &> >(tee -a "$log_file") |
12 | 12 |
|
13 | | -source ./install/_lib.sh |
| 13 | +source "$(dirname $0)/install/_lib.sh" |
14 | 14 |
|
15 | 15 | echo "${_group}Defining variables and helpers ..." |
16 | 16 | MIN_DOCKER_VERSION='19.03.6' |
@@ -139,7 +139,7 @@ if [[ "$IS_KVM" -eq 0 ]]; then |
139 | 139 | fi |
140 | 140 | echo "${_endgroup}" |
141 | 141 |
|
142 | | -./install/create-docker-volumes.sh |
| 142 | +source ./install/create-docker-volumes.sh |
143 | 143 |
|
144 | 144 | echo "${_group}Ensuring files from examples ..." |
145 | 145 | ensure_file_from_example $SENTRY_CONFIG_PY |
@@ -265,14 +265,14 @@ for topic in $NEEDED_KAFKA_TOPICS; do |
265 | 265 | done |
266 | 266 | echo "${_endgroup}" |
267 | 267 |
|
268 | | -./install/upgrade-postgres.sh |
269 | | -./install/set-up-and-migrate-database.sh |
270 | | -./install/migrate-file-storage.sh |
271 | | -./install/relay-credentials.sh |
272 | | -./install/geoip.sh |
| 268 | +source ./install/upgrade-postgres.sh |
| 269 | +source ./install/set-up-and-migrate-database.sh |
| 270 | +source ./install/migrate-file-storage.sh |
| 271 | +source ./install/relay-credentials.sh |
| 272 | +source ./install/geoip.sh |
273 | 273 |
|
274 | 274 | if [[ "$MINIMIZE_DOWNTIME" ]]; then |
275 | | - ./install/restart-carefully.sh |
| 275 | + source ./install/restart-carefully.sh |
276 | 276 | else |
277 | 277 | echo "" |
278 | 278 | echo "-----------------------------------------------------------------" |
|
0 commit comments