Skip to content
Snippets Groups Projects
Commit 35c85454 authored by Mike Hanby's avatar Mike Hanby
Browse files

Moved ENG sysadmins into new eng_sysadmins.pp config

parent 89ef39b7
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@
</projects>
<buildSpec>
<buildCommand>
<name>org.cloudsmith.geppetto.pp.dsl.ui.modulefileBuilder</name>
<name>com.puppetlabs.geppetto.pp.dsl.ui.modulefileBuilder</name>
<arguments>
</arguments>
</buildCommand>
......@@ -17,7 +17,7 @@
</buildCommand>
</buildSpec>
<natures>
<nature>org.cloudsmith.geppetto.pp.dsl.ui.puppetNature</nature>
<nature>com.puppetlabs.geppetto.pp.dsl.ui.puppetNature</nature>
<nature>org.eclipse.xtext.ui.shared.xtextNature</nature>
</natures>
</projectDescription>
# Class: users::sysadmins
#
# This module manages users and groups
#
# Parameters: none
#
# Actions:
#
# Requires: see Modulefile
#
# Sample Usage:
#
class users::sysadmins inherits users::virtual_users
{
User["mhanby"] { groups => ["wheel", "sysadmins", "kvm"] }
User["tfoley"] { groups => ["wheel", "sysadmins"] }
realize(
Group["wheel"],
Group["sysadmins"],
Group["kvm"],
User["mhanby"],
Group["mhanby"],
User["tfoley"],
Group["tfoley"]
)
}
......@@ -20,6 +20,7 @@ class users::rcs_users inherits users::virtual_users
User["billb"],
User["jpr"],
User["mhanby"],
User["matts"],
User["pavgi"],
User["ppreddy"],
User["puri"],
......
......@@ -12,16 +12,19 @@
#
class users::sysadmins inherits users::virtual_users
{
User["billb"] { groups => ["wheel", "sysadmins", "kvm"] }
User["matts"] { groups => ["wheel", "sysadmins", "kvm"] }
User["mhanby"] { groups => ["wheel", "sysadmins", "kvm"] }
User["tfoley"] { groups => ["wheel", "sysadmins"] }
realize(
realize(
Group["kvm"],
Group["wheel"],
Group["sysadmins"],
Group["kvm"],
User["billb"],
Group["billb"],
User["mhanby"],
Group["mhanby"],
User["tfoley"],
Group["tfoley"]
User["matts"],
Group["matts"]
)
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment