12 lines
252 B
Bash
Executable file
12 lines
252 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eou pipefail
|
|
|
|
SRC="src"
|
|
DEST="/opt/www/enroll.sh"
|
|
|
|
cp -a ~/git/enroll/enroll/schema/state.schema.json src/schema/state.schema.json
|
|
|
|
rsync -aHPvz ${SRC}/ root@lupin.mig5.net:${DEST}/
|
|
|
|
ssh root@lupin.mig5.net "chown -R web:web ${DEST}"
|