mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-27 16:24:07 +02:00
16 lines
195 B
Bash
Executable File
16 lines
195 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -xe
|
|
|
|
sh deploy/remove_service.sh
|
|
|
|
set +e
|
|
# avoid 'could not bind to socket' error
|
|
fuser -k 8080/tcp
|
|
set -e
|
|
|
|
su host -c 'sh deploy/pull_and_build.sh'
|
|
|
|
sh deploy/install_service.sh
|
|
|