mirror of
https://github.com/ivabus/pantry
synced 2024-11-23 17:05:07 +03:00
16 lines
No EOL
234 B
Bash
Executable file
16 lines
No EOL
234 B
Bash
Executable file
#!/bin/sh
|
|
|
|
d=$(dirname "$0")
|
|
etc="$d/../etc/gnupg"
|
|
|
|
if [ ! -f "$etc/gpg.conf" ]; then
|
|
mkdir -p "$etc"
|
|
chmod 700 "$etc"
|
|
cat << EOF > "$etc"/gpg.conf
|
|
use-agent
|
|
pinentry-mode loopback
|
|
agent-program $d/gpg-agent
|
|
EOF
|
|
fi
|
|
|
|
"$d"/gpg-exec "$@" |