summaryrefslogtreecommitdiff
path: root/certbot-replicate
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-06-29 03:49:42 +0900
committerOphestra <cat@gensokyo.uk>2025-06-29 03:49:42 +0900
commite4db81206f8f572fc5355b11c20dc51b5b69ffbc (patch)
treee9bd52769693862b4213f5a50db3138876f783da /certbot-replicate
parent34b55506fe58760262d685ad8565c1ef7f2dadf2 (diff)
treewide: remove unused scripts
Diffstat (limited to 'certbot-replicate')
-rwxr-xr-xcertbot-replicate18
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