guests/coreos: restart etcd after configuring networks [GH-2852]

This commit is contained in:
Mitchell Hashimoto 2014-01-18 11:05:29 -08:00
parent fbd8cfc628
commit 64649f8f1d
2 changed files with 4 additions and 1 deletions

View File

@ -63,6 +63,7 @@ BUG FIXES:
- commands/plugin: Plugin installation will fail if dependencies conflict, - commands/plugin: Plugin installation will fail if dependencies conflict,
rather than at runtime. rather than at runtime.
- commands/ssh: When using `-c` on Windows, no more TTY errors. - commands/ssh: When using `-c` on Windows, no more TTY errors.
- guests/coreos: Restart etcd after configuring networks. [GH-2852]
- guests/redhat: Set hostname to FQDN, per the documentation for RedHat. - guests/redhat: Set hostname to FQDN, per the documentation for RedHat.
[GH-2792] [GH-2792]
- hosts/bsd: Don't invoke shell for NFS sudo calls. [GH-2808] - hosts/bsd: Don't invoke shell for NFS sudo calls. [GH-2808]

View File

@ -63,8 +63,10 @@ module VagrantPlugins
comm.sudo("mv /tmp/etcd-cluster.service /media/state/units/") comm.sudo("mv /tmp/etcd-cluster.service /media/state/units/")
comm.sudo("systemctl restart local-enable.service") comm.sudo("systemctl restart local-enable.service")
end
# Restart default etcd
comm.sudo("systemctl start etcd")
end
end end
end end
end end