summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJohn Iacona <jiacona@genarts.com>2013-08-28 14:32:05 -0400
committerJohn Iacona <jiacona@genarts.com>2013-08-28 14:32:05 -0400
commit411111b5ff88b682d7e9cc54a47573bccc3e3edc (patch)
treeedbdc8d0945f02d0104d5a758f86c6efc5ef307a /lib
parenta4ee585cb17751dca8cf49d9361124e438a39d87 (diff)
update git provider to handle checking out into an existing (empty) dir
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/provider/vcsrepo.rb5
-rw-r--r--lib/puppet/provider/vcsrepo/git.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/lib/puppet/provider/vcsrepo.rb b/lib/puppet/provider/vcsrepo.rb
index 2c026ba..05b92f8 100644
--- a/lib/puppet/provider/vcsrepo.rb
+++ b/lib/puppet/provider/vcsrepo.rb
@@ -17,6 +17,11 @@ class Puppet::Provider::Vcsrepo < Puppet::Provider
File.directory?(@resource.value(:path))
end
+ def path_empty?
+ # Path is empty if the only entries are '.' and '..'
+ Dir.entries(@resource.value(:path)).size == 2
+ end
+
# Note: We don't rely on Dir.chdir's behavior of automatically returning the
# value of the last statement -- for easier stubbing.
def at_path(&block) #:nodoc:
diff --git a/lib/puppet/provider/vcsrepo/git.rb b/lib/puppet/provider/vcsrepo/git.rb
index 58330f6..47e84d2 100644
--- a/lib/puppet/provider/vcsrepo/git.rb
+++ b/lib/puppet/provider/vcsrepo/git.rb
@@ -147,7 +147,7 @@ Puppet::Type.type(:vcsrepo).provide(:git, :parent => Puppet::Provider::Vcsrepo)
end
def check_force
- if path_exists?
+ if path_exists? and not path_empty?
if @resource.value(:force)
notice "Removing %s to replace with vcsrepo." % @resource.value(:path)
destroy