mirror of https://github.com/aredn/aredn.git
bugfix: correct lower-case translation for hostname (#555)
This commit is contained in:
parent
da3191478a
commit
8ec57de248
|
@ -39,7 +39,7 @@ ping -q -W10 -c1 downloads.arednmesh.org > /dev/null &&
|
|||
[ -f /tmp/aredn_message ] &&
|
||||
rm /tmp/aredn_message
|
||||
|
||||
nodename=$(echo "$HOSTNAME" | tr '[:upper:]' '[:lower:]')
|
||||
nodename=$(echo "$HOSTNAME" | tr 'A-Z' 'a-z')
|
||||
|
||||
if [ $online = "true" ]
|
||||
then
|
||||
|
|
Loading…
Reference in New Issue