]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/schroot/files/schroot-setup.d/99porterbox-extra-sources
b30ac9fa6484ca9f002fa2ce02b4e2cccdb269a6
[dsa-puppet.git] / modules / schroot / files / schroot-setup.d / 99porterbox-extra-sources
1 #!/bin/bash
2
3 ##
4 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
5 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
6 ##
7
8 # by weasel
9
10 set -e
11
12 [ "$CHROOT_PROFILE" = "dsa" ] || [ "$CHROOT_PROFILE" = "buildd-dsa" ] || exit 0
13
14 . "$SETUP_DATA_DIR/common-data"
15 . "$SETUP_DATA_DIR/common-functions"
16
17 if [ -f "${CHROOT_SCRIPT_CONFIG:-}" ]; then
18     . "$CHROOT_SCRIPT_CONFIG"
19 elif [ -f "$CHROOT_PROFILE_DIR/config" ]; then
20     . "$CHROOT_PROFILE_DIR/config"
21 else
22     fatal "Cannot find config script"
23 fi
24
25 suite_alias="$SUITE_BASE"
26 case "$SUITE_ARCH" in
27     kfreebsd-*)
28         case "$SUITE_BASE" in
29             jessie)
30                 suite_alias="$SUITE_BASE-kfreebsd"
31             ;;
32         esac
33         ;;
34 esac
35
36 if [ "$1" = "setup-start" ] || [ "$1" = "setup-recover" ]; then
37   SRCL="${CHROOT_PATH}/etc/apt/sources.list.d/auto.list"
38   rm -f "$SRCL"
39   mirror=${MIRROR:-http://ftp.debian.org/debian}
40
41   case "$SUITE_ARCH" in
42     ppc64)
43       case "${SUITE_BASE:-}" in
44         sid)
45           echo "deb http://ftp.de.debian.org/debian-ports sid main" >> "$SRCL"
46           echo "deb-src http://http.debian.net/debian sid main" >> "$SRCL"
47           echo "deb http://ftp.de.debian.org/debian-ports unreleased main" >> "$SRCL"
48           echo "deb-src http://ftp.de.debian.org/debian-ports unreleased main" >> "$SRCL"
49           ;;
50         *)
51           fatal "Unexpected suite base $SUITE_BASE"
52           ;;
53       esac
54       ;;
55     *)
56       case "${SUITE_BASE:-}" in
57         experimental)
58           echo "deb     $mirror sid main" >> "$SRCL"
59           echo "deb-src $mirror sid main" >> "$SRCL"
60           ;;
61         sid|stretch)
62           ;;
63         *)
64           echo "deb     http://security.debian.org/ ${suite_alias}/updates main" >> "$SRCL"
65           echo "deb-src http://security.debian.org/ ${suite_alias}/updates main" >> "$SRCL"
66           ;;
67       esac
68       echo "deb     $mirror ${suite_alias} main" >> "$SRCL"
69       echo "deb-src $mirror ${suite_alias} main" >> "$SRCL"
70
71       case "${SUITE_VARIANT:-}" in
72         backports)
73           case "${SUITE_BASE:-}" in
74             squeeze)
75               echo "deb     http://backports.debian.org/debian-backports/ ${suite_alias}-${SUITE_VARIANT} main" >> "$SRCL"
76               echo "deb-src http://backports.debian.org/debian-backports/ ${suite_alias}-${SUITE_VARIANT} main" >> "$SRCL"
77               ;;
78             *)
79               echo "deb     $mirror ${suite_alias}-${SUITE_VARIANT} main" >> "$SRCL"
80               echo "deb-src $mirror ${suite_alias}-${SUITE_VARIANT} main" >> "$SRCL"
81               ;;
82           esac
83           ;;
84       esac
85       ;;
86   esac
87   echo "o To install build dependencies run"
88   echo "  dd-schroot-cmd -c ${SESSION_ID} apt-get update"
89   echo "  followed by build-dep/install as appropriate in the host system."
90   echo "o If you started this session with schroot -b, please do not forget to run"
91   echo "  schroot --end-session -c ${SESSION_ID}"
92   echo "  when you no longer need this environment."
93 fi