mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-15 20:42:49 +03:00
15 lines
440 B
Python
15 lines
440 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
def info():
|
||
|
inf = dict()
|
||
|
inf['name'] = 'network-manager'
|
||
|
inf['version'] = '1.0.0'
|
||
|
inf['support'] = 'debian'
|
||
|
inf['description'] = 'Network-Manager plugin provides to managing host, domain, dns and other network settings.'
|
||
|
inf['task'] = True
|
||
|
inf['user_oriented'] = False
|
||
|
inf['machine_oriented'] = False
|
||
|
inf['developer'] = 'mine.dogan@agem.com.tr'
|
||
|
|
||
|
return inf
|