summaryrefslogtreecommitdiff
path: root/examples/hg
diff options
context:
space:
mode:
authorHunter Haugen <hunter@puppetlabs.com>2014-07-11 14:45:10 -0700
committerHunter Haugen <hunter@puppetlabs.com>2014-07-11 14:45:10 -0700
commit9872c6dec02a50e886a5dd622fd0fa32143cccdb (patch)
tree5c4d861dda83756ec67505a52dd5b0ac7a525ddd /examples/hg
parent7d1c75a649417588bf2d62ddddead06fd6347896 (diff)
Fix lint errors
Diffstat (limited to 'examples/hg')
-rw-r--r--examples/hg/clone_basic_auth.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/hg/clone_basic_auth.pp b/examples/hg/clone_basic_auth.pp
index 1931e1f..984f8ea 100644
--- a/examples/hg/clone_basic_auth.pp
+++ b/examples/hg/clone_basic_auth.pp
@@ -1,7 +1,7 @@
vcsrepo { '/path/to/repo':
- ensure => latest,
- provider => hg,
- source => 'http://hg.example.com/myrepo',
+ ensure => latest,
+ provider => 'hg',
+ source => 'http://hg.example.com/myrepo',
basic_auth_username => 'hgusername',
basic_auth_password => 'hgpassword',
}