I have this problem where I'm trying to create a user and the error
message I am getting is:

err: Could not run Puppet configuration client: Could not find user
admin

Here is what I have in the manifest and I am realizing the user at the
basenode level and all my nodes inherit the basenode.

        @user { "admin":
                ensure          => present,
                uid             => 1100,
                gid             => 1100,
                comment         => "Admin User",
                shell           => "/bin/bash",
                managehome      => "true",
        }
        @group { "admin":
                ensure          => present,
                gid             => 1100
        }

-- 
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