I've got a generic user "java" that owns Java applications.  Due to
circumstances beyond my control, I cannot dictate a change here, so I need
to make Puppet work with the infrastructure on hand.  The big problem,
though, is that java's home directory varies with the application that's
being run.  My thought for working around this was

class jboss {
  include users
  User["java"]{home => "/home/app1"
  realize(User["java"])
}
where java is declared in

class users {
  @user{"java": uid=500, gid=501}
}

Sadly, I get "err: Could not retrieve catalog from remote server: Error 400
on SERVER: Only subclasses can override parameters at
/var/puppet/src/modules/jboss/manifests/init.pp:23".  Is there any way to do
this that isn't going to cause me severe pain?  I suppose I can use a define
for this particular account, but it seems ... stupid.

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