Merge pull request #4469 from Gurpartap/tinycore-change_host_name-pr

change_host_name.rb for TinyCore Linux
This commit is contained in:
Mitchell Hashimoto 2014-10-23 10:18:56 -07:00
commit 26c468b5f9
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
module VagrantPlugins
module GuestTinyCore
module Cap
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
end
end
end
end