Puppet Class: sudo::package::aix
- Defined in:
-
manifests/package/aix.pp
Summary
Install the perzl.org sudo package. It also requires the openldap
rpm. so we add a dependencies to the ldap module.
Overview
27
28
29
30
31
32
33
34
35
36
37
38
|
# File 'manifests/package/aix.pp', line 27
class sudo::package::aix (
Optional[String[1]] $package = undef,
Optional[String[1]] $package_source = undef,
String[1] $package_ensure = present,
Optional[String[1]] $package_provider = undef,
) {
package { $package:
ensure => $package_ensure,
source => $package_source,
provider => $package_provider,
}
}
|