You've already forked build-image
fix: add additional pacman mirrors
This commit is contained in:
18
installation-scripts/00-pacman-mirror.sh
Executable file
18
installation-scripts/00-pacman-mirror.sh
Executable file
@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Initialize pacman-key ring
|
||||
pacman-key --init
|
||||
|
||||
# Add GPG Key
|
||||
pacman-key --recv-keys 9B146D11A9ED6CA7E279EB1A852BCC170D81A982
|
||||
pacman-key --lsign 9B146D11A9ED6CA7E279EB1A852BCC170D81A982
|
||||
|
||||
# Add additional pacman mirrors
|
||||
cat >> /etc/pacman.conf << 'EOF'
|
||||
|
||||
[cs_any]
|
||||
Server = https://arch.cryptic.systems/any/
|
||||
|
||||
[cs_x86_64]
|
||||
Server = https://arch.cryptic.systems/x86_64/
|
||||
EOF
|
Reference in New Issue
Block a user