cfg/bin/backup_gpg
Knut Ahlers efc8bc4f3c
Throw shfmt against bash scripts
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-03-10 12:47:55 +01:00

28 lines
565 B
Bash
Executable File

#!/bin/bash
case $1 in
backup)
# Backup the trustdb
gpg2 --export-ownertrust >.gnupg/trustdb.txt
# Compile the archive
tar -cvjf - .gnupg/private-keys-v1.d .gnupg/pubring.gpg .gnupg/trustdb.gpg .gnupg/trustdb.txt | gpg2 --output ${HOME}/gnupg_backup.asc --symmetric --armor
;;
restore)
# Restore the archive
gpg2 --decrypt ${HOME}/gnupg_backup.asc | tar -xvj
# Restore the owner-trust
gpg2 --import-ownertrust <.gnupg/trustdb.txt
;;
*)
echo "Call me like this: $0 <backup | restore>"
exit 1
;;
esac