aboutsummaryrefslogtreecommitdiffstats
path: root/hyperterm/tools
diff options
context:
space:
mode:
Diffstat (limited to 'hyperterm/tools')
-rw-r--r--hyperterm/tools/sysinfo.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/hyperterm/tools/sysinfo.sh b/hyperterm/tools/sysinfo.sh
index e2db9ec..6d89bcd 100644
--- a/hyperterm/tools/sysinfo.sh
+++ b/hyperterm/tools/sysinfo.sh
@@ -5,7 +5,7 @@ function ii() {
__network "$1" > /dev/null 2>&1 # import network
case ${LANG/_*/} in
es)
- printf '%s\e[1;36m%s\e[m\n' "Has iniciado sesión en " "$(hostname -f)"
+ printf '%s\e[1;36m%s\e[m\n' "Has iniciado sesión en " "$(hostname -f 2> /dev/null || hostname)"
printf '\n\e[1;32m%s\e[m\n%s\n' "Información adicional:" "$(uname -a)"
printf '\n\e[1;32m%s\e[m\n%s\n' "Usuarios Conectados:" "$(who -u)"
printf '\n\e[1;32m%s\e[m\n%s\n' "Fecha actual:" "$(date)"
@@ -17,7 +17,7 @@ function ii() {
printf '%s\n' "${MY_ISP:-"No conectado"}"
;;
*)
- printf '%s\e[1;36m%s\e[m\n' "You are logged on " "$(hostname -f)"
+ printf '%s\e[1;36m%s\e[m\n' "You are logged on " "$(hostname -f 2> /dev/null || hostname)"
printf '\n\e[1;32m%s\e[m\n%s\n' "Additionnal information:" "$(uname -a)"
printf '\n\e[1;32m%s\e[m\n%s\n' "Users logged:" "$(who -u)"
printf '\n\e[1;32m%s\e[m\n%s\n' "Current date:" "$(date)"