Skip to content

Commit

Permalink
fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoblitt committed May 23, 2015
1 parent 4e11d86 commit 3c1962b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions manifests/config.pp
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@

case $::osfamily {
'debian': {
ensure_packages(["daemon"])
Package["daemon"] -> File["init-script"]
ensure_packages(['daemon'])
Package['daemon'] -> File['init-script']
}
default : {}
}

# prog is the 'name' of the init.d script.
$prog = "selenium${name}"

file { "init-script":
file { 'init-script':
ensure => 'file',
path => "/etc/init.d/${prog}",
path => "/etc/init.d/${prog}",
owner => 'root',
group => 'root',
mode => '0755',
Expand Down

0 comments on commit 3c1962b

Please sign in to comment.