[explorer/hostname] Remove code reading persistent hostname
This commit is contained in:
parent
ee440ec619
commit
f5342e9a35
1 changed files with 1 additions and 13 deletions
|
@ -21,19 +21,7 @@
|
||||||
# Retrieve the running hostname
|
# Retrieve the running hostname
|
||||||
#
|
#
|
||||||
|
|
||||||
# Firstly, check hostnamectl if available.
|
if command -v hostname >/dev/null
|
||||||
if command -v hostnamectl >/dev/null
|
|
||||||
then
|
|
||||||
hostnamectl status --static && exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
# In case hostnamectl is missing or failed:
|
|
||||||
# We fall back to alternative approaches
|
|
||||||
if [ "$(uname -s)" = Darwin ] && command -v scutil >/dev/null
|
|
||||||
then
|
|
||||||
# Mac OS X
|
|
||||||
scutil --get HostName 2>/dev/null
|
|
||||||
elif command -v hostname >/dev/null
|
|
||||||
then
|
then
|
||||||
hostname -s
|
hostname -s
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue