diff options
-rw-r--r-- | spec/acceptance/git_clone_protocols_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/acceptance/git_clone_protocols_spec.rb b/spec/acceptance/git_clone_protocols_spec.rb index 77a1adb..a3f897a 100644 --- a/spec/acceptance/git_clone_protocols_spec.rb +++ b/spec/acceptance/git_clone_protocols_spec.rb @@ -7,7 +7,7 @@ hosts.each do |host| before(:all) do # {{{ setup - on(host,apply_manifest("user{'testuser': ensure => present, }")) + on(host,apply_manifest("user{'testuser': ensure => present, managehome => true }")) on(host,apply_manifest("user{'vagrant': ensure => present, }")) # install git install_package(host, 'git') @@ -34,7 +34,7 @@ hosts.each do |host| after(:all) do # {{{ teardown - on(host,apply_manifest("user{'testuser': ensure => absent,}")) + on(host,apply_manifest("user{'testuser': ensure => absent, managehome => true }")) # }}} end |