Hi,

On Fri, Nov 19, 2010 at 4:50 AM, walexey <wale...@gmail.com> wrote:

> Hello everybody!
> How can i create with puppet following sudoers file:
>
> User_Alias      CENTREON=apache,nagios
> CENTREON   ALL = NOPASSWD: /etc/init.d/nagios* restart
> CENTREON   ALL = NOPASSWD: /etc/init.d/nagios* reload
> CENTREON   ALL = NOPASSWD: /usr/bin/nagios* -v *
>
> The problem that augeas create only last line, replacing previous one.
>
>
if you are interested, you can try out a custom sudoers type/provider that I
wrote, the puppet code for your example would be something like:

Sudoers{
  users => ['apache', 'nagios'],
  hosts => 'ALL',
  type => 'user_spec',
}
sudoers{
  'nagios-restart':
    commands => 'NOPASSWD: /etc/init.d/nagios* restart',
  ;
  'nagios-reload':
    commands => 'NOPASSWD: /etc/init.d/nagios* reload',
  ;
  'nagios-splat':
    commands => 'NOPASSWD: /etc/init.d/nagios* -v *',
}

It should work, although it still needs some work :)


https://github.com/bodepd/puppet-sudo


>  --
> You received this message because you are subscribed to the Google Groups
> "Puppet Users" group.
> To post to this group, send email to puppet-us...@googlegroups.com.
> To unsubscribe from this group, send email to
> puppet-users+unsubscr...@googlegroups.com<puppet-users%2bunsubscr...@googlegroups.com>
> .
> For more options, visit this group at
> http://groups.google.com/group/puppet-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-us...@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to