diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2019-02-23 16:17:35 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2019-02-23 16:27:56 +0000 |
commit | a7fea4cfce73c8d1d271d8d0bfcf7b0b0802ad47 (patch) | |
tree | 18aacb25efcf8376f31f97d34cf664b21ec83c3b /share/scripts | |
parent | Harmonizing debconf values for container debconf create script. (diff) | |
download | compute-tools-a7fea4cfce73c8d1d271d8d0bfcf7b0b0802ad47.tar.xz compute-tools-a7fea4cfce73c8d1d271d8d0bfcf7b0b0802ad47.zip |
Using hostname fallback if FQDN is not set.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rwxr-xr-x | share/scripts/debconf.d/0003-debconf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/scripts/debconf.d/0003-debconf b/share/scripts/debconf.d/0003-debconf index 9183538..843d0b4 100755 --- a/share/scripts/debconf.d/0003-debconf +++ b/share/scripts/debconf.d/0003-debconf @@ -1092,7 +1092,7 @@ Internal_options () case "${CNT_CONTAINER_SERVER}" in FQDN) - CNT_CONTAINER_SERVER="$(hostname -f)" + CNT_CONTAINER_SERVER="$(hostname -f 2> /dev/null || hostname)" ;; esac |