mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 08:52:21 +03:00
16 lines
371 B
Python
16 lines
371 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
def info():
|
|
inf = dict()
|
|
inf['name'] = 'ldap'
|
|
inf['version'] = '1.0.0'
|
|
inf['support'] = 'debian'
|
|
inf['description'] = 'Ldap management'
|
|
inf['task'] = True
|
|
inf['user_oriented'] = True
|
|
inf['machine_oriented'] = True
|
|
inf['developer'] = 'muhammededip.yildiz@tubitak.gov.tr'
|
|
|
|
return inf
|