Skip to content

Commit

Permalink
fix linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Hoblitt committed Jun 1, 2014
1 parent d9efd4d commit b81f8fa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
if $url {
$jar_url = $url
} else {
$jar_url = "https://selenium-release.storage.googleapis.com/${path_version}/${jar_name}"
$variant = "${path_version}/${jar_name}"
$jar_url = "https://selenium-release.storage.googleapis.com/${variant}"
}

File {
Expand All @@ -56,7 +57,7 @@

file { $log_path:
ensure => directory,
mode => 0755,
mode => '0755',
}

file { '/var/log/selenium':
Expand Down

0 comments on commit b81f8fa

Please sign in to comment.