@ -1195,9 +1195,8 @@ acpi acpid acpi-support-base
# be able to login on the system, even if just installing plain Debian
# be able to login on the system, even if just installing plain Debian
openssh-server
openssh-server
# support bridge / bonding / vlan
# support bridge / vlan
bridge-utils
bridge-utils
ifenslave-2.6
vlan
vlan
# MT#13637 support https in sources.list
# MT#13637 support https in sources.list
@ -1212,6 +1211,22 @@ apt-transport-https
#os-prober
#os-prober
EOF
EOF
# ifenslave-2.6 in jessie+ is a transitional dummy package that will disappear.
case " $DEBIAN_RELEASE " in
lenny| squeeze| wheezy)
PKG_IFENSLAVE = "ifenslave-2.6"
; ;
*)
PKG_IFENSLAVE = "ifenslave"
; ;
esac
echo " Adding ${ PKG_IFENSLAVE } package (because we're installing ${ DEBIAN_RELEASE } ) "
logit " Adding ${ PKG_IFENSLAVE } package (because we're installing ${ DEBIAN_RELEASE } ) "
cat >> /etc/debootstrap/packages << EOF
# support bonding
${ PKG_IFENSLAVE }
EOF
# MT#8813 The linux-headers-2.6-amd64 package doesn't exist in jessie and newer
# MT#8813 The linux-headers-2.6-amd64 package doesn't exist in jessie and newer
case " $DEBIAN_RELEASE " in
case " $DEBIAN_RELEASE " in
lenny| squeeze| wheezy)
lenny| squeeze| wheezy)