aboutsummaryrefslogtreecommitdiff
path: root/scripts/local
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-08-10 12:15:49 -0300
committerEuAndreh <eu@euandre.org>2020-08-10 12:45:43 -0300
commit100ab568e3aeb512e86fd1155a73454d22e24895 (patch)
tree1d7ff9168b8cfc60e173f2a19f30938bc68d0f6e /scripts/local
parentWIP: Move to Vultr and NixOS (diff)
downloadtoph-100ab568e3aeb512e86fd1155a73454d22e24895.tar.gz
toph-100ab568e3aeb512e86fd1155a73454d22e24895.tar.xz
Migration: Remove Ansible and Docker code, move only to NixOS
Diffstat (limited to 'scripts/local')
-rwxr-xr-xscripts/local/rotate-ssh-keys.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/scripts/local/rotate-ssh-keys.sh b/scripts/local/rotate-ssh-keys.sh
deleted file mode 100755
index 323d27c..0000000
--- a/scripts/local/rotate-ssh-keys.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env bash
-set -Eeuo pipefail
-cd "$(dirname "${BASH_SOURCE[0]}")"
-cd ../../
-
-rm -f ./secrets/ssh/*
-ssh-keygen -t rsa -b 4096 -q -N '' -f ./secrets/ssh/vps-box-client -C "${SSH_EMAIL}"
-ssh-keygen -t rsa -b 4096 -q -N '' -f ./secrets/ssh/vps-box-server -C "${SSH_EMAIL}"
-
-git add ./secrets/ssh/
-git commit -m "Script: rotate SSH keys"