diff options
author | Benjamin Schlüter <bschlueter@posteo.de> | 2018-01-29 15:20:19 +0100 |
---|---|---|
committer | Benjamin Schlüter <bschlueter@posteo.de> | 2018-01-29 15:20:19 +0100 |
commit | 26693c8134f7c72fb2adeed8a915fbb24971b5f2 (patch) | |
tree | b9bdd28539ea5af0b0675871eca205a51a95d5ab /install-itzks-workstation | |
parent | 5d7c623afb41523aeaa2a1d0210672fe0e5f1c17 (diff) | |
download | itzks-install-script-26693c8134f7c72fb2adeed8a915fbb24971b5f2.tar.gz itzks-install-script-26693c8134f7c72fb2adeed8a915fbb24971b5f2.tar.bz2 itzks-install-script-26693c8134f7c72fb2adeed8a915fbb24971b5f2.zip |
Fix syntax for sed command pertaining changes to /etc/network/interfaces.
Diffstat (limited to 'install-itzks-workstation')
-rw-r--r-- | install-itzks-workstation | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install-itzks-workstation b/install-itzks-workstation index 23f806a..94f0401 100644 --- a/install-itzks-workstation +++ b/install-itzks-workstation @@ -71,8 +71,8 @@ esac #editor /etc/network/interfaces # Alternate: scripted edit to /etc/network/interfaces when script is run -sed -i 's/"auto eth0"//' /etc/network/interfaces -sed -i 's/"iface eth0 inet dhcp"/"#NetworkManager iface eth0 inet dhcp"/' /etc/network/interfaces +sed -i 's/auto eth0//' /etc/network/interfaces +sed -i 's/iface eth0 inet dhcp/#NetworkManager iface eth0 inet dhcp/' /etc/network/interfaces #################### |