Site Package: Groups - akumina/AkuminaDev GitHub Wiki
All versions of Akumina
The site deployer step that uses this is groups
options groups
See: https://github.com/akumina/AkuminaDev/wiki/Site-Package-Overview
The step deploys groups based on the path envdir/sitedefinitions/assetdirectory/SecurityGroups/groups.xml The XML in this file will determine what groups get generated within the site collections.
This step creates, it does not edit. If the group is already present, then no action will be taken.
In the xml shown below, we generate 3 groups, 2 of which have dynamic names based on the site title:
<?xml version="1.0" encoding="utf-8" ?>
<groups>
<group name="Akumina Admins" description="Admins for the App Manager" />
<group name="{SiteTitle} - Content Owner" description="Responsible for approving content. AppManager access." />
<group name="{SiteTitle} - Site Owner" description="Business user which manages site and associated permissions." />
</groups>