enroll.sh/upload.sh

16 lines
377 B
Bash
Raw Permalink Normal View History

2026-01-02 08:23:28 +11:00
#!/bin/bash
set -eou pipefail
SRC="src"
DEST="/opt/www/enroll.sh"
2026-01-06 09:08:28 +11:00
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y --no-install-recommends hugo
cp -a ~/git/enroll/enroll/schema/state.schema.json src/static/schema/state.schema.json
2026-01-06 08:25:19 +11:00
2026-01-06 09:08:28 +11:00
cd "${SRC}" && hugo
cd ../
rsync -aHPvz ${SRC}/public/ root@lupin.mig5.net:${DEST}/
2026-01-02 08:23:28 +11:00
ssh root@lupin.mig5.net "chown -R web:web ${DEST}"