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/bash-completion | |
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 '')
-rw-r--r-- | share/bash-completion/container | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container index b7a73ae..150ff71 100644 --- a/share/bash-completion/container +++ b/share/bash-completion/container @@ -123,7 +123,7 @@ _container() list|ls) case "${prev}" in -h|--host) - opts="true false $(hostname -f)" + opts="true false $(hostname -f 2> /dev/null || hostname)" COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0 ;; |