diff options
Diffstat (limited to 'certbot-replicate')
| -rwxr-xr-x | certbot-replicate | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/certbot-replicate b/certbot-replicate deleted file mode 100755 index ef7d9cf4..00000000 --- a/certbot-replicate +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -set -o errexit -o nounset -o pipefail - -status=0 -replicas=({1..3}.grapheneos.org) - -for replica in ${replicas[@]}; do - echo - echo Deploying to $replica - echo - - rsync -rpcvl --delete --fsync --preallocate /etc/letsencrypt/ $replica:/etc/letsencrypt && - ssh root@$replica nginx -s reload || - status=1 -done - -exit $status |
