mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-15 19:32:17 +03:00
18 lines
373 B
Python
18 lines
373 B
Python
|
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# Author: Mine Dogan <mine.dogan@agem.com.tr>
|
||
|
|
||
|
|
||
|
def info():
|
||
|
inf = dict()
|
||
|
inf['name'] = 'sudoers'
|
||
|
inf['version'] = '1.0.0'
|
||
|
inf['support'] = 'debian'
|
||
|
inf['description'] = ''
|
||
|
inf['task'] = False
|
||
|
inf['user_oriented'] = True
|
||
|
inf['machine_oriented'] = False
|
||
|
inf['developer'] = ''
|
||
|
|
||
|
return inf
|