diff --git a/sh_scripts/official_repo.sh b/sh_scripts/official_repo.sh index 2e872c9..d61547b 100644 --- a/sh_scripts/official_repo.sh +++ b/sh_scripts/official_repo.sh @@ -30,6 +30,12 @@ echo "" echo "" echo "LETS GO!" +if [ "$SYSTEM" == "12" ]; then + curl "https://raw.githubusercontent.com/MrUnknownDE/linux-script/main/sh_scripts/repos/debian-12.txt" -o /etc/apt/sources.list + apt-get update && apt-get upgrade -y + apt-get install curl wget apt-transport-https dirmngr neofetch htop nload git -y + echo "Have Fun with the Official Repos :)" +fi if [ "$SYSTEM" == "11" ]; then curl "https://raw.githubusercontent.com/MrUnknownDE/linux-script/main/sh_scripts/repos/debian-11.txt" -o /etc/apt/sources.list apt-get update && apt-get upgrade -y diff --git a/sh_scripts/repos/debian-12.txt b/sh_scripts/repos/debian-12.txt new file mode 100644 index 0000000..f7dc2af --- /dev/null +++ b/sh_scripts/repos/debian-12.txt @@ -0,0 +1,16 @@ +#------------------------------------------------------------------------------# +# OFFICIAL DEBIAN REPOS +#------------------------------------------------------------------------------# + +###### Debian Main Repos +deb http://deb.debian.org/debian bookworm main contrib non-free +deb-src http://deb.debian.org/debian bookworm main contrib non-free + +deb http://deb.debian.org/debian bookworm-updates main contrib non-free +deb-src http://deb.debian.org/debian bookworm-updates main contrib non-free + +deb http://deb.debian.org/debian bookworm-backports main contrib non-free +deb-src http://deb.debian.org/debian bookworm-backports main contrib non-free + +deb http://security.debian.org/debian-security bookworm-security main contrib non-free +deb-src http://security.debian.org/debian-security bookworm-security main contrib non-free \ No newline at end of file