`/etc/init.d/network restart` already restart NM and shutdown interfaces.
In start() :
```
if [ "$(LANG=C nmcli -t --fields running general status 2>/dev/null)" = "running" ]; then
nmcli connection reload
fi
```
In stop() :
```
for i in $vpninterfaces $xdslinterfaces $bridgeinterfaces $vlaninterfaces $remaining; do
unset DEVICE TYPE
(. ./ifcfg-$i
if [ -z "$DEVICE" ] ; then DEVICE="$i"; fi
if ! check_device_down $DEVICE; then
action $"Shutting down interface $i: " ./ifdown $i boot
[ $? -ne 0 ] && rc=1
fi
)
done
```
Where $remaining include all "others" interfaces including eth*
This reverts commit 166d10d4e16836e908be0bd94c2f671cac2b38b4.
43 lines
1.4 KiB
Ruby
43 lines
1.4 KiB
Ruby
module VagrantPlugins
|
|
module GuestRedHat
|
|
module Cap
|
|
class ChangeHostName
|
|
def self.change_host_name(machine, name)
|
|
comm = machine.communicate
|
|
|
|
if !comm.test("hostname -f | grep '^#{name}$'", sudo: false)
|
|
basename = name.split('.', 2)[0]
|
|
comm.sudo <<-EOH.gsub(/^ {14}/, '')
|
|
# Update sysconfig
|
|
sed -i 's/\\(HOSTNAME=\\).*/\\1#{name}/' /etc/sysconfig/network
|
|
|
|
# Update DNS
|
|
sed -i 's/\\(DHCP_HOSTNAME=\\).*/\\1\"#{basename}\"/' /etc/sysconfig/network-scripts/ifcfg-*
|
|
|
|
# Set the hostname - use hostnamectl if available
|
|
echo '#{name}' > /etc/hostname
|
|
if command -v hostnamectl; then
|
|
hostnamectl set-hostname --static '#{name}'
|
|
hostnamectl set-hostname --transient '#{name}'
|
|
else
|
|
hostname -F /etc/hostname
|
|
fi
|
|
|
|
# Remove comments and blank lines from /etc/hosts
|
|
sed -i'' -e 's/#.*$//' -e '/^$/d' /etc/hosts
|
|
|
|
# Prepend ourselves to /etc/hosts
|
|
grep -w '#{name}' /etc/hosts || {
|
|
sed -i'' '1i 127.0.0.1\\t#{name}\\t#{basename}' /etc/hosts
|
|
}
|
|
|
|
# Restart network
|
|
service network restart
|
|
EOH
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|