diff options
author | Daniel Baumann <daniel@debian.org> | 2008-09-20 19:17:04 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:42 +0100 |
commit | ed6d9e8c8c3a6ab4c70eec28fa0326d33178229b (patch) | |
tree | a082866bbcbcaf0724e0a06343352408b2544373 /helpers/lh_chroot_sources | |
parent | 4210fbf03c43f6e3e0c0501ea124b47358759840 (diff) | |
download | vyos-live-build-ed6d9e8c8c3a6ab4c70eec28fa0326d33178229b.tar.gz vyos-live-build-ed6d9e8c8c3a6ab4c70eec28fa0326d33178229b.zip |
Adding explicit --yes to apt-get call when installing keyring packages (previously, this was inherited through Apt(); wrapper) (Closes: #499625).
Diffstat (limited to 'helpers/lh_chroot_sources')
-rwxr-xr-x | helpers/lh_chroot_sources | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/lh_chroot_sources b/helpers/lh_chroot_sources index 628406042..7ff87ac9f 100755 --- a/helpers/lh_chroot_sources +++ b/helpers/lh_chroot_sources @@ -297,7 +297,7 @@ case "${1}" in # Installing keyring packages if [ -n "${LH_KEYRING_PACKAGES}" ] then - Chroot "apt-get --force-yes install ${LH_KEYRING_PACKAGES}" + Chroot "apt-get --yes --force-yes install ${LH_KEYRING_PACKAGES}" Apt update fi |