diff options
author | xengineering <mail2xengineering@protonmail.com> | 2019-12-15 11:03:01 +0100 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2019-12-15 11:03:01 +0100 |
commit | a9d270eddc062c336c40e1ef8e2c732986222673 (patch) | |
tree | 1f68137196293ec69e994872538bb09ab12329aa /util/configure_network.sh | |
parent | 9c3854fc72d16c7a819cd74e93dda56e6805cc21 (diff) | |
download | archinstall-a9d270eddc062c336c40e1ef8e2c732986222673.tar archinstall-a9d270eddc062c336c40e1ef8e2c732986222673.tar.zst archinstall-a9d270eddc062c336c40e1ef8e2c732986222673.zip |
Removed some hard-coding.
Diffstat (limited to 'util/configure_network.sh')
-rw-r--r-- | util/configure_network.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/util/configure_network.sh b/util/configure_network.sh index 6d07280..fd85e36 100644 --- a/util/configure_network.sh +++ b/util/configure_network.sh @@ -18,8 +18,11 @@ # along with this program. If not, see <https://www.gnu.org/licenses/>. +hostname=$1 + + touch /etc/hostname -echo $1 > /etc/hostname +echo $hostname > /etc/hostname touch /etc/hosts echo "" >> /etc/hosts |