diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2019-02-26 02:53:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2019-02-26 02:53:59 +0000 |
commit | 5c104f0294fcb2438ce803b7d7ac24eb72f902d6 (patch) | |
tree | 977489632137165326a91ac1a0fb1251172e4160 | |
parent | Removing staging repositories in debconf create script, not used anymore. (diff) | |
download | compute-tools-5c104f0294fcb2438ce803b7d7ac24eb72f902d6.tar.xz compute-tools-5c104f0294fcb2438ce803b7d7ac24eb72f902d6.zip |
Removing Force-LoopBreak option when calling apt in container debconf create script, not needed anymore.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rwxr-xr-x | share/scripts/debconf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/scripts/debconf b/share/scripts/debconf index 6fcf2af..b218bef 100755 --- a/share/scripts/debconf +++ b/share/scripts/debconf @@ -175,8 +175,8 @@ EOF # Upgrade system Chroot "${DIRECTORY}" "apt-get update" - Chroot "${DIRECTORY}" "apt-get --yes --option APT::Force-LoopBreak=true --option Dpkg::Options::=--force-confnew upgrade" - Chroot "${DIRECTORY}" "apt-get --yes --option APT::Force-LoopBreak=true --option Dpkg::Options::=--force-confnew dist-upgrade" + Chroot "${DIRECTORY}" "apt-get --yes --option Dpkg::Options::=--force-confnew upgrade" + Chroot "${DIRECTORY}" "apt-get --yes --option Dpkg::Options::=--force-confnew dist-upgrade" # Install systemd support packages Chroot "${DIRECTORY}" "apt-get --yes install dbus libpam-systemd systemd-sysv" @@ -637,7 +637,7 @@ EOF # Workaround: We're running lxc-support at the end of the template again. if [ -n "${PACKAGES}" ] then - Chroot "${DIRECTORY}" "apt-get --option APT::Force-LoopBreak=true --option Dpkg::Options::=--force-confnew --yes install ${PACKAGES}" + Chroot "${DIRECTORY}" "apt-get --option Dpkg::Options::=--force-confnew --yes install ${PACKAGES}" fi # Manual hack to regenerate ssh keys |