From 8fd2337038275b7d20ee83d4b82aa81730f3b66e Mon Sep 17 00:00:00 2001 From: viq Date: Thu, 19 Sep 2013 11:55:46 +0200 Subject: [PATCH] Fix invocation of initialize Fixes #2229 for me --- plugins/hosts/arch/host.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/hosts/arch/host.rb b/plugins/hosts/arch/host.rb index 1be131e22..0e4ab7473 100644 --- a/plugins/hosts/arch/host.rb +++ b/plugins/hosts/arch/host.rb @@ -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"