aboutsummaryrefslogtreecommitdiff
path: root/rotate-ssh-keys.sh
diff options
context:
space:
mode:
Diffstat (limited to 'rotate-ssh-keys.sh')
-rwxr-xr-xrotate-ssh-keys.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/rotate-ssh-keys.sh b/rotate-ssh-keys.sh
deleted file mode 100755
index 7189657..0000000
--- a/rotate-ssh-keys.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env bash
-set -Eeuo pipefail
-cd "$(dirname "${BASH_SOURCE[0]}")"
-
-rm -f ./secrets/ssh/*
-ssh-keygen -t rsa -b 4096 -q -N '' -f ./secrets/ssh/vps-box-client
-ssh-keygen -t rsa -b 4096 -q -N '' -f ./secrets/ssh/vps-box-server
-
-git add ./secrets/ssh/
-git commit -m "Script: rotate SSH keys"