From 946bdc6c4f253ee69c4d1def15962a227f9cc752 Mon Sep 17 00:00:00 2001 From: MrUnknownDE Date: Thu, 22 Jun 2023 23:02:08 +0200 Subject: [PATCH] add debian 12 --- sh_scripts/official_repo.sh | 6 ++++++ sh_scripts/repos/debian-12.txt | 16 ++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 sh_scripts/repos/debian-12.txt 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