-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path001-add-keyservers-for-key-importing-v4.sh
executable file
·39 lines (33 loc) · 1.62 KB
/
001-add-keyservers-for-key-importing-v4.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash
set -e
##################################################################################################################
# Author : Erik Dubois
# Website : https://www.erikdubois.be
# Website : https://www.arcolinux.info
# Website : https://www.arcolinux.com
# Website : https://www.arcolinuxd.com
# Website : https://www.arcolinuxb.com
# Website : https://www.arcolinuxiso.com
# Website : https://www.arcolinuxforum.com
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
[ -d $HOME"/.gnupg" ] || mkdir -p $HOME"/.gnupg"
echo "Adding keyservers to your personal .gpg for future applications"
echo "that require keys to be imported with yay for example"
echo '
keyserver hkp://pool.sks-keyservers.net:80
keyserver hkps://hkps.pool.sks-keyservers.net:443
keyserver hkp://ipv4.pool.sks-keyservers.net:11371' | tee --append ~/.gnupg/gpg.conf
chmod 600 ~/.gnupg/gpg.conf
chmod 700 ~/.gnupg
echo "Adding keyservers to the /etc/pacman.d/gnupg folder for the use with pacman"
echo '
keyserver hkp://pool.sks-keyservers.net:80
keyserver hkps://hkps.pool.sks-keyservers.net:443
keyserver hkp://ipv4.pool.sks-keyservers.net:11371' | sudo tee --append /etc/pacman.d/gnupg/gpg.conf
echo "################################################################"
echo "### keyservers added ####"
echo "################################################################"