aboutsummaryrefslogtreecommitdiff
path: root/bootstrap.d/11-apt.sh
blob: 96108328ef8b94d30353c9f5d6ad048c17d7e403 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
# Setup APT repositories
#

# Load utility functions
. ./functions.sh

# Install and setup APT proxy configuration
if [ -z "$APT_PROXY" ] ; then
  install_readonly files/apt/10proxy "$R/etc/apt/apt.conf.d/10proxy"
  sed -i "s/\"\"/\"${APT_PROXY}\"/" "$R/etc/apt/apt.conf.d/10proxy"
fi

# Install APT pinning configuration for flash-kernel package
install_readonly files/apt/flash-kernel "$R/etc/apt/preferences.d/flash-kernel"

# Upgrade collabora package index and install collabora keyring
echo "deb https://repositories.collabora.co.uk/debian ${RELEASE} rpi2" > "$R/etc/apt/sources.list"
chroot_exec apt-get -qq -y update
chroot_exec apt-get -qq -y --force-yes install collabora-obs-archive-keyring

# Install APT sources.list
install_readonly files/apt/sources.list "$R/etc/apt/sources.list"
sed -i "s/\/ftp.debian.org\//\/${APT_SERVER}\//" "$R/etc/apt/sources.list"
sed -i "s/ jessie/ ${RELEASE}/" "$R/etc/apt/sources.list"

# Upgrade package index and update all installed packages and changed dependencies
chroot_exec apt-get -qq -y update
chroot_exec apt-get -qq -y -u dist-upgrade
chroot_exec apt-get -qq -y check