1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-01-08 21:18:00 +03:00

Fixed documentation for os manager base module

This commit is contained in:
Adolfo Gómez García 2023-05-18 15:10:49 +02:00
parent c264ea9c13
commit e47831ebc2
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23

View File

@ -114,13 +114,12 @@ class OSManager(Module):
{
'action': 'rename_ad',
'name': 'xxxxxxx',
'custom': # Dictionary with custom data for the os manager, currently only for ad join domain and random password
{
'ad': 'domain.xxx'
'ou': 'ou' # or '' if default ou
'username': 'userwithaddmachineperms@domain.xxxx'
'password': 'passwordForTheUserWithPerms',
# In a future, probably all AD related data will go inside "custom" key
'custom': # Dictionary with custom data for the os manager, currently only for ad join domain
{
'clientSoftware': 'sssd' or 'winbind' or 'automatically' if linux os manager,
'serverSoftware': 'active-directory' or 'ipa' if linux os manager,
'membershipSoftware': 'samba' or 'adcli' or 'automatically' if linux os manager,
@ -133,10 +132,13 @@ class OSManager(Module):
{
'action': 'rename'
'name': 'xxxxx'
'custom':
{
'username': 'username to change pass'
'password': 'current password for username to change password'
'new_password': 'new password to be set for the username'
}
}
"""
return {}