From 481255b0d4171bcff4aa4e49eb7c02943c2f7d78 Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Fri, 30 Dec 2022 09:32:43 +0000 Subject: Update script for remote execution instead of local --- refresh.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/refresh.sh b/refresh.sh index 9c753a0..542d4da 100755 --- a/refresh.sh +++ b/refresh.sh @@ -6,12 +6,14 @@ git pull # Copy static site hugo -cp -r public/* /var/www/mfashby.net/ +scp -r public/* root@rpi3:/var/www/mfashby.net/ # build & install comments app pushd comments cargo build --release -install -m755 target/release/comments /usr/local/bin/comments -install -m755 comments.service /etc/systemd/system/comments.service +scp target/release/comments root@rpi3:/usr/local/bin/comments +scp comments.service root@rpi3:/etc/systemd/system/comments.service +ssh root@rpi3 -C systemctl daemon-reload +ssh root@rpi3 -C systemctl restart comments popd -systemctl restart comments + -- cgit v1.2.3-ZIG