14 lines
203 B
Bash
Executable File
14 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
tar -czvf certificates.tgz ./certificates/
|
|
|
|
gpg --symmetric --cipher-algo AES256 --armor --pinentry-mode=loopback --output certificates.asc certificates.tgz
|
|
|
|
rm certificates.tgz
|
|
|
|
|