Hello,

I need to expand the membership of a custom system user depending on the availability of some group on the target system i.e.

   user {
    "logger":
    name => "logger",
    ensure => "present",
    groups => ["adm", "wheel", "this _group_ if it exists"],
    shell => "/bin/bash";
    }

The "this _group_ if it exists" entry only works, if the group was already create. I need to expand the list of groups depending on the availability of some groups like i.e.

  user {
    "logger":
    name => "logger",
    ensure => "present",
    [ 'mongodv', 'postgres', 'custom', 'www' ].each do | g |
        g.exist? _groups < g.to_s
    end
    groups => _groups
    shell => "/bin/bash";
    }

I know that is totally wrong, but I just want to describe what I'm aiming to.

Thanks!
Christian

--
You received this message because you are subscribed to the Google Groups "Puppet 
Users" group.
To post to this group, send email to puppet-users@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