Skip to content

Commit

Permalink
make package name configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebigum committed Jan 22, 2019
1 parent 7082cd5 commit 7438673
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions manifests/server/install.pp
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# == Class samba::server::install
#
class samba::server::install {
package { 'samba':
class samba::server::install(
$package_name = 'samba'
) {
package { $package_name:
ensure => installed
}
}

0 comments on commit 7438673

Please sign in to comment.