mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 08:52:21 +03:00
15 lines
439 B
Python
15 lines
439 B
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
def info():
|
|
inf = dict()
|
|
inf['name'] = 'local-user'
|
|
inf['version'] = '1.0.0'
|
|
inf['support'] = 'debian'
|
|
inf['description'] = 'Local-User plugin provides to listing users and adding, editing, deleting a local user.'
|
|
inf['task'] = True
|
|
inf['user_oriented'] = False
|
|
inf['machine_oriented'] = False
|
|
inf['developer'] = 'tuncay.colak@tubitak.gov.tr'
|
|
|
|
return inf
|