diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2016-07-01 09:53:17 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2016-07-01 09:53:17 +0000 |
commit | a18674d73d1ef3472897c0f2049bf8131b9e4eb6 (patch) | |
tree | 0910f1df6e4648f6866cc06910314b845bf99bf1 /share/scripts/debconf.d/0003-debconf | |
parent | Adding upstream version 20160615. (diff) | |
download | open-infrastructure-compute-tools-a18674d73d1ef3472897c0f2049bf8131b9e4eb6.tar.xz open-infrastructure-compute-tools-a18674d73d1ef3472897c0f2049bf8131b9e4eb6.zip |
Adding upstream version 20160701.upstream/20160701
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'share/scripts/debconf.d/0003-debconf')
-rwxr-xr-x | share/scripts/debconf.d/0003-debconf | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/share/scripts/debconf.d/0003-debconf b/share/scripts/debconf.d/0003-debconf index 05c9eb5..15a6a15 100755 --- a/share/scripts/debconf.d/0003-debconf +++ b/share/scripts/debconf.d/0003-debconf @@ -1045,14 +1045,16 @@ Internal_options () if db_get cnt-debconf/auto then CNT_AUTO="${RET:-FQDN}" # string (w/o empty) - - case "${CNT_AUTO}" in - FQDN) - CNT_AUTO="$(hostname -f)" - ;; - esac fi + CNT_AUTO="${CNT_AUTO:-FQDN}" + + case "${CNT_AUTO}" in + FQDN) + CNT_AUTO="$(hostname -f)" + ;; + esac + echo "CNT_AUTO=\"${CNT_AUTO}\"" >> "${DEBCONF_TMPDIR}/debconf.default" if db_get cnt-debconf/bind |