puppet/modules/vcsrepo/examples/hg/clone_basic_auth.pp
2014-07-16 13:58:34 -05:00

7 lines
228 B
Puppet

vcsrepo { '/path/to/repo':
ensure => latest,
provider => 'hg',
source => 'http://hg.example.com/myrepo',
basic_auth_username => 'hgusername',
basic_auth_password => 'hgpassword',
}