Merge pull request #2233 from viq/patch-1

hosts/arch: fix invocation of initialize
This commit is contained in:
Mitchell Hashimoto 2013-09-19 11:09:21 -07:00
commit 8687a1ec84
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@ module VagrantPlugins
5
end
def initialize
def initialize(*args)
super
if systemd?
@nfs_check_command = "/usr/sbin/systemctl status nfsd"
@nfs_start_command = "/usr/sbin/systemctl start nfsd rpc-idmapd rpc-mountd rpcbind"