From fd330cb15d5247a467d086d9b227b56ab4bd2879 Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Fri, 30 Dec 2022 17:39:41 +0000 Subject: Rename refresh.sh -> deploy.sh Add step to stop comments app before copying new binary --- deploy.sh | 18 ++++++++++++++++++ refresh.sh | 19 ------------------- 2 files changed, 18 insertions(+), 19 deletions(-) create mode 100755 deploy.sh delete mode 100755 refresh.sh diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..d66afa0 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +set -e + +# Copy static site +hugo +scp -r public/* root@rpi3:/var/www/mfashby.net/ + +# build & install comments app +pushd comments +RUSTFLAGS="-C linker=aarch64-linux-gnu-gcc" cargo build --target=aarch64-unknown-linux-gnu --release +ssh root@rpi3 -C systemctl stop comments +scp target/aarch64-unknown-linux-gnu/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 + diff --git a/refresh.sh b/refresh.sh deleted file mode 100755 index d94502d..0000000 --- a/refresh.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env bash - -set -e - -git pull - -# Copy static site -hugo -scp -r public/* root@rpi3:/var/www/mfashby.net/ - -# build & install comments app -pushd comments -RUSTFLAGS="-C linker=aarch64-linux-gnu-gcc" cargo build --target=aarch64-unknown-linux-gnu --release -scp target/aarch64-unknown-linux-gnu/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 - -- cgit v1.2.3-ZIG