10 lines
147 B
Bash
Executable File
10 lines
147 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -f "/etc/gpg/gpg.conf" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
rm -rf /etc/gpg || exit 0
|
|
mkdir -p /etc/gpg
|
|
echo "use-keyboxd 0" > /etc/gpg/gpg.conf
|