diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2019-02-09 12:13:06 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2019-02-17 12:11:19 +0000 |
commit | 81cbc0f6521e0dd91563363561053106be18bb61 (patch) | |
tree | 59c1f430e5d8d5f7fc5621bc89e9ad57921cb98b | |
parent | Adding convenience symlinks for container start and stop commands. (diff) | |
download | compute-tools-81cbc0f6521e0dd91563363561053106be18bb61.tar.xz compute-tools-81cbc0f6521e0dd91563363561053106be18bb61.zip |
Correcting (harmless) error in https mirror handling wrt/ installing apt-transport-https.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
-rwxr-xr-x | share/scripts/debconf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/scripts/debconf b/share/scripts/debconf index 3fda4c5..c202832 100755 --- a/share/scripts/debconf +++ b/share/scripts/debconf @@ -247,8 +247,8 @@ Debootstrap () EXCLUDE="ifupdown" INCLUDE="dbus" - if echo "${MIRROR}" | grep -qs '^https' || \ - echo "{PARENT_MIRROR}" | grep -qs '^https' + if ( echo "${MIRROR}" | grep -qs '^https' ) || \ + ( echo "${PARENT_MIRROR}" | grep -qs '^https' ) then INCLUDE="${INCLUDE},apt-transport-https,ca-certificates" fi |