I'm trying to create a script that will replace the parameters of a given network interface in the 01-network-manager-all.yaml
file.
The file looks something like this:
# Let NetworkManager manage all devices on this system
network:
version: 2
renderer: NetworkManager
ethernets:
enp0s3:
dhcp4: no
dhcp6: no
addresses: [195.10.10.10/24]
gateway4: 195.10.10.10
nameservers:
addresses: [1.1.1.1]
enp0s8:
dhcp4: no
dhcp6: no
addresses: [196.10.10.10/24]
gateway4: 196.10.10.10
nameservers:
addresses: [1.1.1.1]
enp0s9:
dhcp4: no
dhcp6: no
addresses: [197.10.10.10/24]
gateway4: 197.10.10.10
nameservers:
addresses: [1.1.1.1]
Say I want to replace the lines concerning enp0s8
and leave the others as they are.
The output would look something like this:
# Let NetworkManager manage all devices on this system
network:
version: 2
renderer: NetworkManager
ethernets:
enp0s3:
dhcp4: no
dhcp6: no
addresses: [195.10.10.10/24]
gateway4: 195.10.10.10
nameservers:
addresses: [1.1.1.1]
enp0s8:
dhcp4: no
dhcp6: no
addresses: [196.250.250.125/24]
gateway4: 196.250.250.125
nameservers:
addresses: [8.8.8.8]
enp0s9:
dhcp4: no
dhcp6: no
addresses: [197.10.10.10/24]
gateway4: 197.10.10.10
nameservers:
addresses: [1.1.1.1]
In this case, I'm looking for a sed
- or any other command - that will replace everything in between enp0s8
and enp0s9
.
I'm not a very experienced Bash user, any tip will be appreciated.
My poor attempt at doing so
sed -e '/^ *enp0s8:/,/^ *^enp0s9:/s/$CONFIG_TO_ADD/' "/etc/netplan/01-network-manager-all.yaml"
Using yq :