diff options
author | JoelHMikael <53561102+JoelHMikael@users.noreply.github.com> | 2022-01-18 18:57:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-18 18:57:10 +0200 |
commit | edf044c1e1e0c751229549dd9d14062b230149be (patch) | |
tree | ad18984d3031ce6bc7ccb549415c58d77672a53f /init.sh | |
parent | f0d41b4b7ef5faff8fbc84de9175f67746a5a8b3 (diff) | |
parent | 8f711465194f6779271825bdb2413658880f4c18 (diff) | |
download | LYLLRuoka-edf044c1e1e0c751229549dd9d14062b230149be.tar.gz LYLLRuoka-edf044c1e1e0c751229549dd9d14062b230149be.zip |
Merge branch 'master' into MYSQLDB
Diffstat (limited to 'init.sh')
-rwxr-xr-x | init.sh | 24 |
1 files changed, 21 insertions, 3 deletions
@@ -1,6 +1,24 @@ #!/bin/sh -# Put in this dir so that it can execute: +exec 1>>/tmp/slogs +exec 2>>/tmp/slogs +echo | date +echo "Init running" + cd /home/joel + +echo "Removing old packages..." rm -r -f ./FoodJS -git clone "https://github.com/JoelHMikael/FoodJS.git" >> /tmp/test.txt -node ./FoodJS/server.js + +echo "Waiting for connection..." +while [ ! "$(ping 'www.github.com' -c 1)" ] +do + sleep 5 +done + +echo "Cloning new packages..." +# Create a deployment key and save it in the default folder without passphrase to make this work: +git clone "git@github.com:JoelHMikael/FoodJS.git" + +echo "Starting server..." +cd /home/joel/FoodJS +node ./server.js |