14 lines
294 B
Bash
Executable file
14 lines
294 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eou pipefail
|
|
|
|
SRC="src"
|
|
DEST="/opt/www/cspresso.cafe"
|
|
|
|
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}/
|
|
|
|
ssh root@lupin.mig5.net "chown -R web:web ${DEST}"
|