diff options
author | Benjamin Schlüter <bschlueter@posteo.de> | 2018-01-29 16:11:10 +0100 |
---|---|---|
committer | Benjamin Schlüter <bschlueter@posteo.de> | 2018-01-29 16:11:10 +0100 |
commit | 0e8baa0a348962467e9ef9cc286100144401092c (patch) | |
tree | be1b6ae87f91071fd59cd98787ef5d2e2428c0cf /install-itzks-workstation | |
parent | 87744fb499e0077ebe31f2e38c321ff71636681b (diff) | |
download | itzks-install-script-0e8baa0a348962467e9ef9cc286100144401092c.tar.gz itzks-install-script-0e8baa0a348962467e9ef9cc286100144401092c.tar.bz2 itzks-install-script-0e8baa0a348962467e9ef9cc286100144401092c.zip |
Fix syntax for setting HOSTNAME.
Diffstat (limited to 'install-itzks-workstation')
-rw-r--r-- | install-itzks-workstation | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install-itzks-workstation b/install-itzks-workstation index 9784960..071a24a 100644 --- a/install-itzks-workstation +++ b/install-itzks-workstation @@ -176,7 +176,7 @@ es mw101.intern heißen. [ENTER] ''' # Set hostname read -p 'Wie lautet der Hostname (ohne Domain)? ' myhost hostnamectl set-hostname $myhost -export HOSTNAME=$(myhost) +export HOSTNAME="$myhost" # To be sure restart the following services invoke-rc.d rsyslog restart |