Skip to content
This repository was archived by the owner on Mar 28, 2019. It is now read-only.

Commit 8241a94

Browse files
committed
Lint fixes on readme
Just making a trivial change to get travis to run again following the rspec version fix
1 parent f685b73 commit 8241a94

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
At an absolute minimum, you need the following.
1111

1212
``` Puppet
13-
class { "puppet::server":
13+
class { 'puppet::server':
1414
servertype => 'standalone',
1515
manifest => '/etc/puppet/manifests/site.pp',
1616
ca => true,
@@ -26,13 +26,13 @@ something that scales a bit more.
2626
``` Puppet
2727
class service::puppet::master($servertype, $ca = false) {
2828
29-
class { "::puppet::server":
29+
class { '::puppet::server':
3030
modulepath => [
3131
'$confdir/modules/site',
3232
'$confdir/env/$environment/dist',
3333
],
34-
storeconfigs => "puppetdb",
35-
reporturl => "https://my.puppet.dashboard/reports",
34+
storeconfigs => 'puppetdb',
35+
reporturl => 'https://my.puppet.dashboard/reports',
3636
servertype => 'unicorn',
3737
manifest => '$confdir/environments/$environment/site.pp',
3838
ca => $ca,

0 commit comments

Comments
 (0)