Skip to content

Commit 14f1de3

Browse files
committed
Add sources thing in a bodgy way
1 parent 4953722 commit 14f1de3

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
1+
#!/bin/bash
2+
# Set the sources (kinda a bodge)
3+
4+
echo ">>> Setting up /etc/apt/sources.list..."
5+
6+
cat > /etc/apt/sources.list <<'EOF'
17
deb http://cdn.debian.net/debian/ trixie main contrib non-free non-free-firmware
28
deb-src http://cdn.debian.net/debian/ trixie main contrib non-free non-free-firmware
9+
310
deb http://security.debian.org/ trixie-security main contrib non-free non-free-firmware
411
deb-src http://security.debian.org/ trixie-security main contrib non-free non-free-firmware
12+
513
deb http://cdn.debian.net/debian/ trixie-updates main contrib non-free non-free-firmware
614
deb-src http://cdn.debian.net/debian/ trixie-updates main contrib non-free non-free-firmware
15+
716
deb http://cdn.debian.net/debian/ trixie-backports main contrib non-free non-free-firmware
817
deb-src http://cdn.debian.net/debian/ trixie-backports main contrib non-free non-free-firmware
18+
EOF
19+
20+
apt-get update -y || true
921

22+
echo ">>> /etc/apt/sources.list updated successfully."

0 commit comments

Comments
 (0)