Imported puppetlabs-vcsrepo
This commit is contained in:
parent
0938a13fe6
commit
18d9aa4a23
152 changed files with 9191 additions and 0 deletions
6
modules/vcsrepo/examples/hg/clone.pp
Normal file
6
modules/vcsrepo/examples/hg/clone.pp
Normal file
|
@ -0,0 +1,6 @@
|
|||
vcsrepo { '/tmp/vcstest-hg-clone':
|
||||
ensure => present,
|
||||
provider => hg,
|
||||
source => 'http://hg.basho.com/riak',
|
||||
revision => 'riak-0.5.3',
|
||||
}
|
7
modules/vcsrepo/examples/hg/clone_basic_auth.pp
Normal file
7
modules/vcsrepo/examples/hg/clone_basic_auth.pp
Normal file
|
@ -0,0 +1,7 @@
|
|||
vcsrepo { '/path/to/repo':
|
||||
ensure => latest,
|
||||
provider => 'hg',
|
||||
source => 'http://hg.example.com/myrepo',
|
||||
basic_auth_username => 'hgusername',
|
||||
basic_auth_password => 'hgpassword',
|
||||
}
|
4
modules/vcsrepo/examples/hg/init_repo.pp
Normal file
4
modules/vcsrepo/examples/hg/init_repo.pp
Normal file
|
@ -0,0 +1,4 @@
|
|||
vcsrepo { '/tmp/vcstest-hg-init':
|
||||
ensure => present,
|
||||
provider => hg,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue