rebrand!: Antergos NeXT -> Euri Linux

This commit is contained in:
2026-08-21 21:43:47 +02:00
parent 7256fd331a
commit 0cfc149d37
1452 changed files with 599 additions and 597 deletions
+8 -8
View File
@@ -1,7 +1,7 @@
#!/bin/bash
set -e
echo "Setting up Antergos NeXT PKGS..."
echo "Setting up Euri Linux PKGS..."
if [[ $EUID -ne 0 ]]; then
echo "Run with sudo!"
@@ -10,21 +10,21 @@ fi
cp /etc/pacman.conf /etc/pacman.conf.backup
if ! grep -q "\[antergos-pkgs\]" /etc/pacman.conf; then
if ! grep -q "\[euri-pkgs\]" /etc/pacman.conf; then
cat >> /etc/pacman.conf << 'CONF'
[antergos-pkgs]
[euri-pkgs]
SigLevel = DatabaseRequired PackageOptional
Server = https://antergos-next.github.io/antergos-packages/
Server = https://antergos-nas.taild4360b.ts.net/pkgs/
CONF
echo "Added antergos-pkgs to pacman.conf"
echo "Added euri-pkgs to pacman.conf"
else
echo "antergos-pkgs already in pacman.conf"
echo "euri-pkgs already in pacman.conf"
fi
pacman-key --init 2>/dev/null || true
pacman-key --populate antergos-next 2>/dev/null || true
pacman-key --populate euri 2>/dev/null || true
pacman -Sy
echo "Antergos NeXT PKGS ready!"
echo "Euri Linux PKGS ready!"