aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoel <joel.h.kronqvist@gmail.com>2021-12-25 19:24:51 +0200
committerjoel <joel.h.kronqvist@gmail.com>2021-12-25 19:24:51 +0200
commitcd36848829db0b5228f9532a10bb15577eb7cff9 (patch)
tree1eb048e60ad6c45d78ad61d84367d8c255cdce8e
parente5bd4fe003b5e8478da3f8a44d95acfcfb1267ac (diff)
downloadLYLLRuoka-cd36848829db0b5228f9532a10bb15577eb7cff9.tar.gz
LYLLRuoka-cd36848829db0b5228f9532a10bb15577eb7cff9.zip
Server updating finished
-rwxr-xr-xinit.sh24
-rw-r--r--server.js1
2 files changed, 21 insertions, 4 deletions
diff --git a/init.sh b/init.sh
index 2af8e9c..1cf40bf 100755
--- a/init.sh
+++ b/init.sh
@@ -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
diff --git a/server.js b/server.js
index 39c3a38..514d592 100644
--- a/server.js
+++ b/server.js
@@ -80,7 +80,6 @@ async function buildMain(args)
{
const path = args["path"];
const query = args["query"];
- console.log(query);
const foods = args["foods"];
let index;
if (typeof query.index === "string")