Merge pull request #9404 from hakoerber/fix-9403
Debian: Point hostname to 127.0.1.1 in /etc/hosts
This commit is contained in:
commit
a855c702c1
|
@ -18,7 +18,11 @@ module VagrantPlugins
|
|||
|
||||
# Prepend ourselves to /etc/hosts
|
||||
grep -w '#{name}' /etc/hosts || {
|
||||
sed -i'' '1i 127.0.0.1\\t#{name}\\t#{basename}' /etc/hosts
|
||||
if grep -w '^127\\.0\\.1\\.1' /etc/hosts ; then
|
||||
sed -i'' 's/^127\\.0\\.1\\.1\\s.*$/127.0.1.1\\t#{name}\\t#{basename}/' /etc/hosts
|
||||
else
|
||||
sed -i'' '1i 127.0.1.1\\t#{name}\\t#{basename}' /etc/hosts
|
||||
fi
|
||||
}
|
||||
|
||||
# Update mailname
|
||||
|
|
Loading…
Reference in New Issue