I'm trying to create a file similar to this
<Users "admin">
  <user "user1">
    Name User One
    Phone 1112223333
  </user>
  <user "user2">
    Name User Two
  </user>
</Users>

I want to be able to add users in this fashion
app::users { 
  'user1': name => 'User One', phone => '1112223333';
  'user2': name => 'User Two';
}
Then use a template to create the actual file. I've done something similar 
to this in the past by using hashes but it seems like a hack and doesn't 
cleanly express what variables are available to be set.

Anyone have any suggestions on the best way to make this work?

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/puppet-users/-/tgapeB5oEpYJ.
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