-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bunch of edits for june 2020 training
- Loading branch information
mchyzer
committed
May 24, 2020
1 parent
9af7bfe
commit 3e6638d
Showing
10 changed files
with
135 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| # | ||
| # Grouper Configuration | ||
| # $Id: grouper.example.properties,v 1.48 2009-12-16 06:02:30 mchyzer Exp $ | ||
| # | ||
|
|
||
| # Grouper uses Grouper Configuration Overlays (documented on wiki) | ||
| # By default the configuration is read from grouper.base.properties | ||
| # (which should not be edited), and the grouper.properties overlays | ||
| # the base settings. See the grouper.base.properties for the possible | ||
| # settings that can be applied to the grouper.properties | ||
|
|
||
| #if groups like the wheel group should be auto-created for convenience (note: check config needs to be on) | ||
| configuration.autocreate.system.groups = true | ||
|
|
||
| # A wheel group allows you to enable non-GrouperSystem subjects to act | ||
| # like a root user when interacting with the registry. | ||
| groups.wheel.use = true | ||
|
|
||
| # Set to the name of the group you want to treat as the wheel group. | ||
| # The members of this group will be treated as root-like users. | ||
| groups.wheel.group = etc:sysadmingroup | ||
|
|
||
| # Used to allow Include Exclude groups | ||
| grouperIncludeExclude.use = true | ||
| grouperIncludeExclude.requireGroups.use = true | ||
|
|
||
| ################################## | ||
| ## Lockout groups. Could be used for other things, but used for policy group templates at least | ||
| ## if there is no allowed group, then anyone could use it | ||
| ################################## | ||
|
|
||
| # group name of a lockout group | ||
| # {valueType: "group", regex: "^grouper\\.lockoutGroup\\.name\\.\\d+$"} | ||
| grouper.lockoutGroup.name.0 = ref:iam:global_deny | ||
|
|
||
| # allowed to use this lockout group. If not configured, anyone could use | ||
| # {valueType: "group", regex: "^grouper\\.lockoutGroup\\.allowedToUse\\.\\d+$"} | ||
| # grouper.lockoutGroup.allowedToUse.0 = ref:lockoutCanUse | ||
|
|
||
| ################################## | ||
| ## Require groups. Could be used for other things, but used for policy group templates at least | ||
| ## if there is no allowed group, then anyone could use it | ||
| ################################## | ||
|
|
||
| # group name of a require group | ||
| # {valueType: "group", regex: "^grouper\\.requireGroup\\.name\\.\\d+$"} | ||
| grouper.requireGroup.name.0 = ref:iam:active | ||
|
|
||
| # group name of a require group | ||
| # {valueType: "group", regex: "^grouper\\.requireGroup\\.name\\.\\d+$"} | ||
| grouper.requireGroup.name.0 = ref:employee:fac_staff | ||
|
|
||
| # allowed to use this require group. If not configured, anyone could use | ||
| # {valueType: "group", regex: "^grouper\\.lockoutGroup\\.requireGroup\\.\\d+$"} | ||
| # grouper.requireGroup.allowedToUse.0 = ref:activeCanUse | ||
|
|
||
| # grouper reporting file system path where reports will be stored, e.g. /opt/grouper/reports | ||
| # {valueType: "string", required: false} | ||
| reporting.file.system.path = /tmp | ||
|
|
||
|
|
||
|
|
||
| # {valueType: "string", regex: "^grouper\\.membership\\.customComposite\\.uiKey\\.\\d+$"} | ||
| grouper.membership.customComposite.uiKey.0 = customCompositeMinusFacStaff | ||
|
|
||
| # {valueType: "string", regex: "^grouper\\.membership\\.customComposite\\.compositeType\\.\\d+$"} | ||
| grouper.membership.customComposite.compositeType.0 = complement | ||
|
|
||
| # {valueType: "group", regex: "^grouper\\.membership\\.customComposite\\.groupName\\.\\d+$"} | ||
| grouper.membership.customComposite.groupName.0 = ref:employee:fac_staff | ||
|
|
||
|
|
||
|
|
||
| # {valueType: "string", regex: "^grouper\\.membership\\.customComposite\\.uiKey\\.\\d+$"} | ||
| grouper.membership.customComposite.uiKey.1 = customCompositeMinusFacStaffStudent | ||
|
|
||
| # {valueType: "string", regex: "^grouper\\.membership\\.customComposite\\.compositeType\\.\\d+$"} | ||
| grouper.membership.customComposite.compositeType.1 = complement | ||
|
|
||
| # {valueType: "group", regex: "^grouper\\.membership\\.customComposite\\.groupName\\.\\d+$"} | ||
| grouper.membership.customComposite.groupName.1 = ref:fac_staff_student |
2 changes: 2 additions & 0 deletions
2
ex401/ex401.1.1/container_files/grouperText/grouper.text.en.us.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| customCompositeMinusFacStaff = Entities who are not faculty or staff | ||
| customCompositeMinusFacStaffStudent = Entities who are not faculty, staff, or students |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| source ../buildVersion.sh | ||
| echo "Building gte:401 version ${VERSION_TAG}" | ||
| #docker build --build-arg VERSION_TAG=${VERSION_TAG} --tag=tier/gte:401.1.1-${VERSION_TAG} ex401.1.1 \ | ||
|
|
||
| #&& docker build --build-arg VERSION_TAG=${VERSION_TAG} --tag=tier/gte:401.1.end-${VERSION_TAG} ex401.1.end \ | ||
| #&& | ||
| docker build --build-arg VERSION_TAG=${VERSION_TAG} --tag=tier/gte:401.2.1-${VERSION_TAG} ex401.2.1 | ||
| #\ | ||
| #&& docker build --build-arg VERSION_TAG=${VERSION_TAG} --tag=tier/gte:401.2.end-${VERSION_TAG} ex401.2.end \ | ||
| #&& docker build --build-arg VERSION_TAG=${VERSION_TAG} --tag=tier/gte:401.3.1-${VERSION_TAG} ex401.3.1 \ | ||
| #&& docker build --build-arg VERSION_TAG=${VERSION_TAG} --tag=tier/gte:401.3.end-${VERSION_TAG} ex401.3.end \ | ||
| #&& docker build --build-arg VERSION_TAG=${VERSION_TAG} --tag=tier/gte:401.4.1-${VERSION_TAG} ex401.4.1 \ | ||
| #&& docker build --build-arg VERSION_TAG=${VERSION_TAG} --tag=tier/gte:401.4.end-${VERSION_TAG} ex401.4.end | ||
|
|
||
| if [[ "$OSTYPE" == "darwin"* ]]; then | ||
| say exercises for 401 build complete | ||
| fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters