From 4dbf6bdf061ee87e2855636ee263dd24f0777378 Mon Sep 17 00:00:00 2001 From: Ryan Kavanagh Date: Sat, 22 Feb 2020 23:17:18 -0500 Subject: more schroot config --- etc/schroot/setup.d/80append-apt-sources | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 etc/schroot/setup.d/80append-apt-sources (limited to 'etc/schroot/setup.d/80append-apt-sources') diff --git a/etc/schroot/setup.d/80append-apt-sources b/etc/schroot/setup.d/80append-apt-sources new file mode 100755 index 0000000..953a5b1 --- /dev/null +++ b/etc/schroot/setup.d/80append-apt-sources @@ -0,0 +1,13 @@ +#!/bin/sh +# /etc/schroot/setup.d/80apt-get-update + +EXTRA_APT_SOURCES="/etc/schroot/sources.list.d/${CHROOT_NAME}.sources.list" +APT_PREFS="/etc/schroot/sources.list.d/${CHROOT_NAME}.preferences" + +if [ -f "EXTRA_APT_SOURCES" -a $1 = "setup-start" ]; then + if : || [ "$AUTH_VERBOSITY" = "verbose" ]; then + chroot "${CHROOT_PATH}" apt-get update >&2 || true + else + chroot "${CHROOT_PATH}" apt-get update >/dev/null || true + fi +fi -- cgit v1.2.3