Puppet Class: sudo::params
- Defined in:
- manifests/params.pp
Overview
1 2 3 4 5 6 7 8 9 10 |
# File 'manifests/params.pp', line 1
class sudo::params (
$extra_full_sudo_users = [],
$requiretty = false,
$extra_path = undef,
$extra_shells = undef,
$sudo_fullaccess_group = $::operatingsystem ? { default => 'wheel', Debian => 'adm', Ubuntu => 'admin' },
)
{
$rulesfile = '/etc/sudoers'
}
|