1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
# GOsa² Plugin: NIS Netgroups Management
This plugin for GOsa² provides you with a UI to manage LDAP based NIS netgroups.
## Installation Instructions
*Openldap schemas needed:* nis.schema or rfc2307bis.schema
Changes in ``gosa.conf``:
In GOsa's menu definition:
```
<section name="Administration">
<plugin...
<plugin...
...
<plugin acl="netgroup" class="netgroupManagement" />
```
In Tab definitions:
```
<!-- Netgroup dialog -->
<netgrouptabs>
<tab class="netgroup" name="Generic" />
</netgrouptabs>
```
And in Location definition:
```
<location name="XXXXX"
...
...
...
userRDN=...
groupsRDN=...
netgroupRDN="Your DN or SUBDN for netgroups"
```
If you want to choose the NIS Netgroup of a user from the user interface you also must change this:
```
<usertabs>
<tab...
<tab...
...
<tab class="netgroupAccount" name="NIS Netgroup" />
```
If you want to choose the NIS Netgroup of a system (server, workstation or network device) from the user interface you also must change this:
```
<servtabs>
<tab...
<tab...
...
<tab class="netgroupSystem" name="NIS Netgroup" />
```
```
<worktabs>
<tab...
<tab...
...
<tab class="netgroupSystem" name="NIS Netgroup" />
```
```
<componenttabs>
<tab...
<tab...
...
<tab class="netgroupSystem" name="NIS Netgroup" />
```
## More Information
GIT: https://github.com/gosa-project/gosa-plugins-netgroups/
## Author & Credits
The NIS netgroups plugin has originally been written by Alejandro
Escanero Blanco in 2011 for the Debian Edu project.
|