summaryrefslogtreecommitdiff
path: root/examples/hg/clone_basic_auth.pp
blob: 1931e1f2f63cf65dc42088e707e526db9c61ddfb (plain)
1
2
3
4
5
6
7
vcsrepo { '/path/to/repo':
  ensure   => latest,
  provider => hg,
  source   => 'http://hg.example.com/myrepo',
  basic_auth_username => 'hgusername',
  basic_auth_password => 'hgpassword',
}