new features for vcsrepo.
* support recursive chown on repo * support checking out tags (git) * support adding excludes/ignored files * dropped a few unused methods * rework git provider logic a bit
This commit is contained in:
parent
f9f8a808fa
commit
81787d4940
@ -1,11 +1,22 @@
|
||||
require 'tmpdir'
|
||||
require 'digest/md5'
|
||||
require 'fileutils'
|
||||
|
||||
# Abstract
|
||||
class Puppet::Provider::Vcsrepo < Puppet::Provider
|
||||
|
||||
private
|
||||
|
||||
def set_ownership
|
||||
owner = @resource.value(:owner) || nil
|
||||
group = @resource.value(:group) || nil
|
||||
FileUtils.chown_R(owner, group, @resource.value(:path))
|
||||
end
|
||||
|
||||
def path_exists?
|
||||
File.directory?(@resource.value(:path))
|
||||
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:
|
||||
|
@ -17,19 +17,20 @@ Puppet::Type.type(:vcsrepo).provide(:git, :parent => Puppet::Provider::Vcsrepo)
|
||||
if @resource.value(:ensure) == :bare
|
||||
notice "Ignoring revision for bare repository"
|
||||
else
|
||||
checkout_branch_or_reset
|
||||
checkout_or_reset
|
||||
end
|
||||
end
|
||||
if @resource.value(:ensure) != :bare
|
||||
update_submodules
|
||||
end
|
||||
end
|
||||
update_owner_and_excludes
|
||||
end
|
||||
|
||||
def destroy
|
||||
FileUtils.rm_rf(@resource.value(:path))
|
||||
end
|
||||
|
||||
|
||||
def latest?
|
||||
at_path do
|
||||
return self.revision == self.latest
|
||||
@ -37,7 +38,6 @@ Puppet::Type.type(:vcsrepo).provide(:git, :parent => Puppet::Provider::Vcsrepo)
|
||||
end
|
||||
|
||||
def latest
|
||||
fetch
|
||||
return get_revision('origin/HEAD')
|
||||
end
|
||||
|
||||
@ -46,26 +46,18 @@ Puppet::Type.type(:vcsrepo).provide(:git, :parent => Puppet::Provider::Vcsrepo)
|
||||
end
|
||||
|
||||
def revision=(desired)
|
||||
fetch
|
||||
checkout_or_reset(desired)
|
||||
if local_branch_revision?(desired)
|
||||
at_path do
|
||||
git('checkout', desired)
|
||||
git('pull', 'origin')
|
||||
end
|
||||
update_submodules
|
||||
elsif remote_branch_revision?(desired)
|
||||
at_path do
|
||||
git('checkout',
|
||||
'-b', @resource.value(:revision),
|
||||
'--track', "origin/#{@resource.value(:revision)}")
|
||||
end
|
||||
update_submodules
|
||||
else
|
||||
reset(desired)
|
||||
if @resource.value(:ensure) != :bare
|
||||
update_submodules
|
||||
end
|
||||
# reset instead of pull to avoid merge conflicts. assuming remote is
|
||||
# authoritative.
|
||||
# might be worthwhile to have an allow_local_changes param to decide
|
||||
# whether to reset or pull when we're ensuring latest.
|
||||
at_path { git('reset', '--hard', "origin/#{desired}") }
|
||||
end
|
||||
if @resource.value(:ensure) != :bare
|
||||
update_submodules
|
||||
end
|
||||
update_owner_and_excludes
|
||||
end
|
||||
|
||||
def bare_exists?
|
||||
@ -85,18 +77,15 @@ Puppet::Type.type(:vcsrepo).provide(:git, :parent => Puppet::Provider::Vcsrepo)
|
||||
git('fetch', '--tags', 'origin')
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def path_exists?
|
||||
File.directory?(@resource.value(:path))
|
||||
end
|
||||
private
|
||||
|
||||
def bare_git_config_exists?
|
||||
File.exist?(File.join(@resource.value(:path), 'config'))
|
||||
end
|
||||
|
||||
|
||||
def clone_repository(source, path)
|
||||
check_force
|
||||
args = ['clone']
|
||||
if @resource.value(:ensure) == :bare
|
||||
args << '--bare'
|
||||
@ -109,27 +98,33 @@ Puppet::Type.type(:vcsrepo).provide(:git, :parent => Puppet::Provider::Vcsrepo)
|
||||
end
|
||||
end
|
||||
|
||||
def fetch
|
||||
at_path do
|
||||
git('fetch', 'origin')
|
||||
def check_force
|
||||
if path_exists?
|
||||
if @resource.value(:force)
|
||||
notice "Removing %s to replace with vcsrepo." % @resource.value(:path)
|
||||
destroy
|
||||
else
|
||||
raise Puppet::Error, "Could not create repository (non-repository at path)"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def pull
|
||||
at_path do
|
||||
git('pull', 'origin')
|
||||
end
|
||||
end
|
||||
|
||||
def init_repository(path)
|
||||
check_force
|
||||
if @resource.value(:ensure) == :bare && working_copy_exists?
|
||||
convert_working_copy_to_bare
|
||||
elsif @resource.value(:ensure) == :present && bare_exists?
|
||||
convert_bare_to_working_copy
|
||||
elsif File.directory?(@resource.value(:path))
|
||||
raise Puppet::Error, "Could not create repository (non-repository at path)"
|
||||
else
|
||||
normal_init
|
||||
# normal init
|
||||
FileUtils.mkdir(@resource.value(:path))
|
||||
args = ['init']
|
||||
if @resource.value(:ensure) == :bare
|
||||
args << '--bare'
|
||||
end
|
||||
at_path do
|
||||
git(*args)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@ -160,17 +155,7 @@ Puppet::Type.type(:vcsrepo).provide(:git, :parent => Puppet::Provider::Vcsrepo)
|
||||
if commits_in?(File.join(@resource.value(:path), '.git'))
|
||||
reset('HEAD')
|
||||
git('checkout', '-f')
|
||||
end
|
||||
end
|
||||
|
||||
def normal_init
|
||||
FileUtils.mkdir(@resource.value(:path))
|
||||
args = ['init']
|
||||
if @resource.value(:ensure) == :bare
|
||||
args << '--bare'
|
||||
end
|
||||
at_path do
|
||||
git(*args)
|
||||
update_owner_and_excludes
|
||||
end
|
||||
end
|
||||
|
||||
@ -181,13 +166,13 @@ Puppet::Type.type(:vcsrepo).provide(:git, :parent => Puppet::Provider::Vcsrepo)
|
||||
false
|
||||
end
|
||||
|
||||
def checkout_branch_or_reset
|
||||
if remote_branch_revision?
|
||||
at_path do
|
||||
git('checkout', '-b', @resource.value(:revision), '--track', "origin/#{@resource.value(:revision)}")
|
||||
end
|
||||
else
|
||||
reset(@resource.value(:revision))
|
||||
def checkout_or_reset(revision = @resource.value(:revision))
|
||||
if local_branch_revision?
|
||||
reset(revision)
|
||||
elsif tag_revision?
|
||||
at_path { git('checkout', '-b', revision) }
|
||||
elsif remote_branch_revision?
|
||||
at_path { git('checkout', '-b', revision, '--track', "origin/#{revision}") }
|
||||
end
|
||||
end
|
||||
|
||||
@ -205,32 +190,61 @@ Puppet::Type.type(:vcsrepo).provide(:git, :parent => Puppet::Provider::Vcsrepo)
|
||||
end
|
||||
|
||||
def remote_branch_revision?(revision = @resource.value(:revision))
|
||||
at_path do
|
||||
branches.include?("origin/#{revision}")
|
||||
end
|
||||
# git < 1.6 returns 'origin/#{revision}'
|
||||
# git 1.6+ returns 'remotes/origin/#{revision}'
|
||||
at_path { branches.grep /(remotes\/)?origin\/#{revision}/ }
|
||||
end
|
||||
|
||||
def local_branch_revision?(revision = @resource.value(:revision))
|
||||
at_path do
|
||||
branches.include?(revision)
|
||||
end
|
||||
at_path { branches.include?(revision) }
|
||||
end
|
||||
|
||||
def tag_revision?(revision = @resource.value(:revision))
|
||||
at_path { tags.include?(revision) }
|
||||
end
|
||||
|
||||
def branches
|
||||
at_path { git('branch', '-a') }.gsub('*', ' ').split(/\n/).map { |line| line.strip }
|
||||
end
|
||||
|
||||
def tags
|
||||
at_path { git('tag', '-l') }.split(/\n/).map { |line| line.strip }
|
||||
end
|
||||
|
||||
def set_excludes
|
||||
open(File.join(@resource.value(:path), '.git/info/exclude'), 'w') do |f|
|
||||
@resource.value(:excludes).each do |ex|
|
||||
f.write(ex + "\n")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def get_revision(rev)
|
||||
if !working_copy_exists?
|
||||
create
|
||||
end
|
||||
|
||||
at_path do
|
||||
git('fetch', 'origin')
|
||||
git('fetch', '--tags', 'origin')
|
||||
end
|
||||
current = at_path { git('rev-parse', rev).strip }
|
||||
if @resource.value(:revision)
|
||||
if local_branch_revision?
|
||||
canonical = at_path { git('rev-parse', @resource.value(:revision)).strip }
|
||||
elsif remote_branch_revision?
|
||||
canonical = at_path { git('rev-parse', 'origin/' + @resource.value(:revision)).strip }
|
||||
end
|
||||
current = @resource.value(:revision) if current == canonical
|
||||
end
|
||||
|
||||
return current
|
||||
end
|
||||
|
||||
def update_owner_and_excludes
|
||||
if @resource.value(:owner) or @resource.value(:group)
|
||||
set_ownership
|
||||
end
|
||||
if @resource.value(:excludes)
|
||||
set_excludes
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -17,10 +17,10 @@ Puppet::Type.newtype(:vcsrepo) do
|
||||
feature :reference_tracking,
|
||||
"The provider supports tracking revision references that can change
|
||||
over time (eg, some VCS tags and branch names)"
|
||||
|
||||
|
||||
ensurable do
|
||||
attr_accessor :latest
|
||||
|
||||
|
||||
def insync?(is)
|
||||
@should ||= []
|
||||
|
||||
@ -36,8 +36,8 @@ Puppet::Type.newtype(:vcsrepo) do
|
||||
return false
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
newvalue :present do
|
||||
provider.create
|
||||
end
|
||||
@ -108,6 +108,24 @@ Puppet::Type.newtype(:vcsrepo) do
|
||||
newvalue(/^\S+$/)
|
||||
end
|
||||
|
||||
newparam(:owner) do
|
||||
desc "The user/uid that owns the repository files"
|
||||
end
|
||||
|
||||
newparam(:group) do
|
||||
desc "The group/gid that owns the repository files"
|
||||
end
|
||||
|
||||
newparam(:excludes) do
|
||||
desc "Files to be excluded from the repository"
|
||||
end
|
||||
|
||||
newparam(:force) do
|
||||
desc "Force repository creation, destroying any files on the path in the process."
|
||||
newvalues(:true, :false)
|
||||
defaultto false
|
||||
end
|
||||
|
||||
newparam :compression, :required_features => [:gzip_compression] do
|
||||
desc "Compression level"
|
||||
validate do |amount|
|
||||
|
Loading…
x
Reference in New Issue
Block a user