serverctl/infrastructure/zip-ssh-keys.sh
kjuulh 42a6110e3c
Some checks failed
continuous-integration/drone/push Build is failing
Add zip keys
2022-02-18 16:26:35 +01:00

13 lines
195 B
Bash
Executable File

#!/bin/bash
ZIP_KEY=$(openssl rand -hex 30)
mkdir -p ssh_keys/
cp -f ~/.ssh/id_ed25519* ssh_keys/
zip -r --password $ZIP_KEY ssh_keys.zip ssh_keys/
echo "zip done!"
echo "Zip key: $ZIP_KEY"