18 lines
362 B
Python
18 lines
362 B
Python
#!/usr/bin/env python3
|
|
|
|
def profile() -> dict:
|
|
profile = dict()
|
|
profile['filename'] = '/etc/profile'
|
|
profile['data'] = list()
|
|
profile['data'].append({
|
|
'description': 'Set timeout for session',
|
|
'flag': 'TMOUT',
|
|
'value': 600,
|
|
})
|
|
return profile
|
|
|
|
def password_quality() -> list:
|
|
passwd = list()
|
|
|
|
return passwd
|