adding folder for keys and mirrors
This commit is contained in:
parent
057d3ccd19
commit
f2ae7a29de
2 changed files with 53 additions and 0 deletions
38
keys-and-mirrors/1-get-arcolinux-keys-and-mirrors.sh
Executable file
38
keys-and-mirrors/1-get-arcolinux-keys-and-mirrors.sh
Executable file
|
@ -0,0 +1,38 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
##################################################################################################################
|
||||
# Written to be used on 64 bits computers
|
||||
# Author : Erik Dubois
|
||||
# Website : http://www.erikdubois.be
|
||||
##################################################################################################################
|
||||
##################################################################################################################
|
||||
#
|
||||
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
|
||||
#
|
||||
##################################################################################################################
|
||||
|
||||
#!/bin/bash
|
||||
#
|
||||
##################################################################################################################
|
||||
# Written to be used on 64 bits computers
|
||||
# Author : Erik Dubois
|
||||
# Website : http://www.erikdubois.be
|
||||
##################################################################################################################
|
||||
##################################################################################################################
|
||||
#
|
||||
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
|
||||
#
|
||||
##################################################################################################################
|
||||
|
||||
source="https://github.com/arcolinuxiso/alci_repo/raw/master/x86_64/arcolinux-keyring-20230919-6-any.pkg.tar.zst"
|
||||
name="arcolinux-keyring-20230919-6-any.pkg.tar.zst"
|
||||
|
||||
wget $source -O /tmp/$name
|
||||
sudo pacman -U /tmp/$name --noconfirm --needed
|
||||
|
||||
|
||||
source="https://github.com/arcolinuxiso/alci_repo/raw/master/x86_64/arcolinux-mirrorlist-git-21.01-1-any.pkg.tar.zst"
|
||||
name="arcolinux-mirrorlist-git-21.01-1-any.pkg.tar.zst"
|
||||
|
||||
wget $source -O /tmp/$name
|
||||
sudo pacman -U /tmp/$name --noconfirm --needed
|
15
keys-and-mirrors/2-get-chaotic-keys-and-mirrors.sh
Executable file
15
keys-and-mirrors/2-get-chaotic-keys-and-mirrors.sh
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
##################################################################################################################
|
||||
# Written to be used on 64 bits computers
|
||||
# Author : Erik Dubois
|
||||
# Website : http://www.erikdubois.be
|
||||
##################################################################################################################
|
||||
##################################################################################################################
|
||||
#
|
||||
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
|
||||
#
|
||||
##################################################################################################################
|
||||
|
||||
yay -S chaotic-keyring --noconfirm --needed
|
||||
yay -S chaotic-mirrorlist --noconfirm --needed
|
Loading…
Reference in a new issue