mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Added some documentation to the classes
This commit is contained in:
parent
9a2545957f
commit
cdfa81d905
1 changed files with 29 additions and 0 deletions
29
library/user
29
library/user
|
@ -165,6 +165,25 @@ except:
|
||||||
|
|
||||||
|
|
||||||
class User(object):
|
class User(object):
|
||||||
|
"""
|
||||||
|
This is a generic User manipulation class - generic in this case
|
||||||
|
meaning it is aimed at Linuxish platforms using useradd/userdel/usermod
|
||||||
|
On object creation it will load the most appropriate subclass based
|
||||||
|
on the platform and distribution.
|
||||||
|
|
||||||
|
A subclass may wish to override the following action methods:-
|
||||||
|
- create_user()
|
||||||
|
- remove_user()
|
||||||
|
- modify_user()
|
||||||
|
- ssh_key_gen()
|
||||||
|
- ssh_key_fingerprint()
|
||||||
|
|
||||||
|
The main function also uses the following User methods to decide
|
||||||
|
what to do:-
|
||||||
|
- user_exists()
|
||||||
|
|
||||||
|
All subclasses MUST define platform and distribution (which may be None).
|
||||||
|
"""
|
||||||
|
|
||||||
platform = 'Generic'
|
platform = 'Generic'
|
||||||
distribution = None
|
distribution = None
|
||||||
|
@ -484,6 +503,16 @@ class User(object):
|
||||||
# ===========================================
|
# ===========================================
|
||||||
|
|
||||||
class FreeBSD_User(User):
|
class FreeBSD_User(User):
|
||||||
|
"""
|
||||||
|
This is a FreeBSD User manipulation class - it uses the pw command
|
||||||
|
to manipulate the user database, followed by the chpass command
|
||||||
|
to change the password.
|
||||||
|
|
||||||
|
This overrides the following methods from the generic class:-
|
||||||
|
- create_user()
|
||||||
|
- remove_user()
|
||||||
|
- modify_user()
|
||||||
|
"""
|
||||||
|
|
||||||
platform = 'FreeBSD'
|
platform = 'FreeBSD'
|
||||||
distribution = None
|
distribution = None
|
||||||
|
|
Loading…
Reference in a new issue