diff options
Diffstat (limited to '')
-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 |