I have this user and group that I need to realize:

        @user { "policyd":
                ensure  => "present",
                uid             => "103",
                gid             => "103",
                comment => "Postfix Policy Daemon",
                home    => "/home/policyd",
                shell   => "/bin/bash",
        }
        @group { "policyd":
                ensure  => "present",
                gid             => "103",
        }

but how do I make sure the group is created before the user? Only way
I can think of is realizing the group in a class that I "require" in
the class realizing the user, but that seems silly...


  -jf

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

Reply via email to