diff options
author | Robert Peichaer <rpe@cvs.openbsd.org> | 2015-10-26 19:24:05 +0000 |
---|---|---|
committer | Robert Peichaer <rpe@cvs.openbsd.org> | 2015-10-26 19:24:05 +0000 |
commit | 7e13c881eeab790dfdfa71d5e0fd9f21c8065015 (patch) | |
tree | 16588626eee54a52a7c3de4ea8725b52fef33616 /etc | |
parent | 962779fd6a26ed0bd9742f392df2a647c9006eb2 (diff) |
The hostname variable is not used since r1.99. Remove it and use
stripcom() output directly with the hostname command.
OK deraadt@ krw@
Diffstat (limited to 'etc')
-rw-r--r-- | etc/netstart | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/etc/netstart b/etc/netstart index 30f918936f4..c4ba1fb8511 100644 --- a/etc/netstart +++ b/etc/netstart @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: netstart,v 1.157 2015/10/23 15:22:49 claudio Exp $ +# $OpenBSD: netstart,v 1.158 2015/10/26 19:24:04 rpe Exp $ # Turn off Strict Bourne shell mode. set +o sh @@ -185,10 +185,7 @@ fi # /etc/myname contains my symbolic name. if [ -f /etc/myname ]; then - hostname=`stripcom /etc/myname` - hostname $hostname -else - hostname=`hostname` + hostname "$(stripcom /etc/myname)" fi # Set the address for the loopback interface. Bringing the interface up, |