.update
This commit is contained in:
parent
5f62eb6e88
commit
07eef0b81b
1 changed files with 52 additions and 0 deletions
|
@ -31,6 +31,58 @@ installed_dir=$(dirname $(readlink -f $(basename `pwd`)))
|
||||||
|
|
||||||
##################################################################################################################
|
##################################################################################################################
|
||||||
|
|
||||||
|
sudo pacman -S wget --noconfirm --needed
|
||||||
|
sudo pacman -S jq --noconfirm --needed
|
||||||
|
arco_repo_db=$(wget -qO- https://api.github.com/repos/arcolinux/arcolinux_repo/contents/x86_64)
|
||||||
|
echo "Getting the ArcoLinux keys from the ArcoLinux repo"
|
||||||
|
|
||||||
|
sudo wget "$(echo "$arco_repo_db" | jq -r '[.[] | select(.name | contains("arcolinux-keyring")) | .name] | .[0] | sub("arcolinux-keyring-"; "https://github.com/arcolinux/arcolinux_repo/raw/main/x86_64/arcolinux-keyring-")')" -O /tmp/arcolinux-keyring-git-any.pkg.tar.zst
|
||||||
|
sudo pacman -U --noconfirm --needed /tmp/arcolinux-keyring-git-any.pkg.tar.zst
|
||||||
|
|
||||||
|
######################################################################################################################
|
||||||
|
|
||||||
|
echo "Getting the latest arcolinux mirrors file"
|
||||||
|
|
||||||
|
sudo wget "$(echo "$arco_repo_db" | jq -r '[.[] | select(.name | contains("arcolinux-mirrorlist-git-")) | .name] | .[0] | sub("arcolinux-mirrorlist-git-"; "https://github.com/arcolinux/arcolinux_repo/raw/main/x86_64/arcolinux-mirrorlist-git-")')" -O /tmp/arcolinux-mirrorlist-git-any.pkg.tar.zst
|
||||||
|
sudo pacman -U --noconfirm --needed /tmp/arcolinux-mirrorlist-git-any.pkg.tar.zst
|
||||||
|
|
||||||
|
if grep -q arcolinux_repo /etc/pacman.conf; then
|
||||||
|
|
||||||
|
echo
|
||||||
|
tput setaf 2
|
||||||
|
echo "################################################################"
|
||||||
|
echo "################ ArcoLinux repos are already in /etc/pacman.conf "
|
||||||
|
echo "################################################################"
|
||||||
|
tput sgr0
|
||||||
|
echo
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
|
echo '
|
||||||
|
|
||||||
|
#[arcolinux_repo_testing]
|
||||||
|
#SigLevel = PackageRequired DatabaseNever
|
||||||
|
#Include = /etc/pacman.d/arcolinux-mirrorlist
|
||||||
|
|
||||||
|
[arcolinux_repo]
|
||||||
|
SigLevel = PackageRequired DatabaseNever
|
||||||
|
Include = /etc/pacman.d/arcolinux-mirrorlist
|
||||||
|
|
||||||
|
[arcolinux_repo_3party]
|
||||||
|
SigLevel = PackageRequired DatabaseNever
|
||||||
|
Include = /etc/pacman.d/arcolinux-mirrorlist
|
||||||
|
|
||||||
|
[arcolinux_repo_xlarge]
|
||||||
|
SigLevel = PackageRequired DatabaseNever
|
||||||
|
Include = /etc/pacman.d/arcolinux-mirrorlist' | sudo tee --append /etc/pacman.conf
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
sudo pacman -Sy
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
func_install() {
|
func_install() {
|
||||||
if pacman -Qi $1 &> /dev/null; then
|
if pacman -Qi $1 &> /dev/null; then
|
||||||
tput setaf 2
|
tput setaf 2
|
||||||
|
|
Loading…
Reference in a new issue