2026-01-02 15:23:46 +11:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
set -eou pipefail
|
|
|
|
|
|
|
|
|
|
SRC="src"
|
|
|
|
|
DEST="/opt/www/cspresso.cafe"
|
|
|
|
|
|
2026-01-06 09:51:05 +11:00
|
|
|
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y --no-install-recommends hugo
|
|
|
|
|
|
|
|
|
|
cd "${SRC}" && hugo
|
|
|
|
|
cd ../
|
|
|
|
|
rsync -aHPvz ${SRC}/public/ root@lupin.mig5.net:${DEST}/
|
2026-01-02 15:23:46 +11:00
|
|
|
|
|
|
|
|
ssh root@lupin.mig5.net "chown -R web:web ${DEST}"
|