Skip to content

Commit

Permalink
Use scoped variables
Browse files Browse the repository at this point in the history
  • Loading branch information
jhooyberghs committed Jun 26, 2017
1 parent d76e961 commit d922efd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions manifests/daemon.pp
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@
$user,
$group,

$install_method = $prometheus::params::install_method,
$download_extension = $prometheus::params::download_extension,
$os = $prometheus::params::os,
$arch = $prometheus::params::arch,
$bin_dir = $prometheus::params::bin_dir,
$install_method = $::prometheus::params::install_method,
$download_extension = $::prometheus::params::download_extension,
$os = $::prometheus::params::os,
$arch = $::prometheus::params::arch,
$bin_dir = $::prometheus::params::bin_dir,
$package_name = undef,
$package_ensure = undef,
$manage_user = true,
$extra_groups = [],
$manage_group = true,
$purge = true,
$options = '',
$init_style = $prometheus::params::init_style,
$init_style = $::prometheus::params::init_style,
$service_ensure = 'running',
$service_enable = true,
$manage_service = true,
Expand Down

0 comments on commit d922efd

Please sign in to comment.