eureka/deploy.sh

16 lines
630 B
Bash
Raw Normal View History

#!/bin/sh
DEST=$(grep "#define DEPLOY_DEST" config.h | awk '{print $3}' | sed -e 's/"//g')
2023-10-21 04:44:33 +00:00
IDENT=$(grep "#define DEPLOY_IDENT" config.h | awk '{print $3}' | sed -e 's/"//g')
2024-09-27 01:32:04 +00:00
SITEROOT=$(grep "#define SITEROOT" config.h | awk '{print $3}' | sed -e 's/"//g')
TWTXT=$(grep "#define TWTXT" config.h | awk '{print $3}' | sed -e 's/"//g')
2021-10-26 20:57:55 +00:00
2024-09-27 01:32:04 +00:00
if [ "$1" = "--resync" ]; then
2023-10-21 04:44:33 +00:00
rsync -avk -e "ssh -i ~/.ssh/${IDENT}" --delete ${DEST} ../
2024-09-27 01:32:04 +00:00
else
rsync -avK -e "ssh -i ~/.ssh/${IDENT}" --delete ../ ${DEST}
if [ "$1" = "--syndicate" ] && [ $? -eq 0 ]; then
2024-09-27 01:37:47 +00:00
./underbbs.sh honk "$(cat ${SITEROOT}/${TWTXT} | head -n 1 | cut -f 2)"
2024-09-27 01:32:04 +00:00
fi
fi