summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/chroot_local-hooks/sources.list-format19
-rw-r--r--config/chroot_local-includes/etc/apt/sources.list12
2 files changed, 31 insertions, 0 deletions
diff --git a/config/chroot_local-hooks/sources.list-format b/config/chroot_local-hooks/sources.list-format
new file mode 100644
index 0000000..7fcf14e
--- /dev/null
+++ b/config/chroot_local-hooks/sources.list-format
@@ -0,0 +1,19 @@
+#!/bin/bash
+# update sources.list
+
+if [ -d /etc/apt/sources.list.d ]; then
+ for repo in /etc/apt/sources.list.d/*
+ do
+ case "$(basename "$repo" .list)" in
+ live.debian.net)
+ # ignore and remove these repos
+ ;;
+ *)
+ cat "$repo" >> /etc/apt/sources.list
+ echo >> /etc/apt/sources.list
+ ;;
+ esac
+ rm "$repo"
+ done
+fi
+
diff --git a/config/chroot_local-includes/etc/apt/sources.list b/config/chroot_local-includes/etc/apt/sources.list
new file mode 100644
index 0000000..f4d8f57
--- /dev/null
+++ b/config/chroot_local-includes/etc/apt/sources.list
@@ -0,0 +1,12 @@
+# See sources.list(5) for more information, especialy
+# Remember that you can only use http, ftp or file URIs
+# CDROMs are managed through the apt-cdrom tool.
+
+# Debian Squeeze
+deb http://ftp.de.debian.org/debian squeeze main contrib non-free
+deb-src http://ftp.de.debian.org/debian squeeze main contrib non-free
+
+# Debian Squeeze Updates
+deb http://security.debian.org squeeze/updates main contrib non-free
+deb-src http://security.debian.org squeeze/updates main contrib non-free
+