Remove useless line

/usr/bin/sethostname will change /etc/hostname, useless to do it twice
This commit is contained in:
bmx0r 2015-04-21 21:04:40 +02:00
parent a9b8139755
commit 0b588e3656
1 changed files with 0 additions and 1 deletions

View File

@ -4,7 +4,6 @@ module VagrantPlugins
class ChangeHostName
def self.change_host_name(machine, name)
if !machine.communicate.test("hostname | grep '^#{name}$'")
machine.communicate.sudo("sh -c 'echo \"#{name}\" > /etc/hostname'")
machine.communicate.sudo("/usr/bin/sethostname #{name}")
end
end