enable and start httpd on client

This commit is contained in:
Fraser Tweedale 2015-10-22 12:55:46 +10:00 committed by Alexander Bokovoy
parent 3ed5610f64
commit 08a96bdf81

2
Vagrantfile vendored
View File

@ -31,6 +31,8 @@ Vagrant.configure(2) do |config|
config.vm.provision "shell",
inline: 'echo "nameserver 192.168.33.10" > /etc/resolv.conf'
config.vm.provision "shell",
inline: 'systemctl -q enable httpd && systemctl start httpd'
end
end