File: post_distupgrade_squeeze-backports

package info (click to toggle)
piuparts 0.62
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 1,692 kB
  • sloc: python: 6,823; sh: 2,194; makefile: 126
file content (14 lines) | stat: -rwxr-xr-x 402 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e

test "$PIUPARTS_DISTRIBUTION" = "squeeze-backports" || exit 0

# apt-get -t squeeze-backports dist-upgrade may pull in too many
# packages that are not co-installable in squeeze-backports
# so maintain a list of packages in the sid base system
# that are in squeeze-backports, too, and don't cause problems

PKGS=""
PKGS="$PKGS insserv"

apt-get -y -t squeeze-backports install $PKGS