25 lines
800 B
Text
25 lines
800 B
Text
/**
|
|
* WARNING: This usergroup definition is automatically generated by Puppet.
|
|
* ANY MANUAL CHANGES TO IT WILL GET OVERWRITTEN!
|
|
*/
|
|
|
|
/**
|
|
* A usergroup definition. You can create your own configuration files
|
|
* in the conf.d directory (e.g. one per host). By default all *.conf
|
|
* files in this directory are included.
|
|
*
|
|
*/
|
|
|
|
object UserGroup "<%= @object_usergroup_name %>" {
|
|
<%#- If any of the @ parameters are undefined, don't print anything for them: -%>
|
|
<%- if @template_to_import -%>
|
|
<%#- Otherwise, include the parameter: -%>
|
|
import "<%= @template_to_import -%>"
|
|
<%- end -%>
|
|
<%- if @display_name -%>
|
|
display_name = "<%= @display_name -%>"
|
|
<%- end -%>
|
|
<%- if @groups.length != 0 -%>
|
|
groups = [ <%- @groups.each do |group| -%> "<%= group %>", <%- end -%>]
|
|
<%- end -%>
|
|
}
|