mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 13:32:17 +03:00
16 lines
495 B
Python
16 lines
495 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
def info():
|
||
|
inf = dict()
|
||
|
inf['name'] = 'service'
|
||
|
inf['version'] = '1.0.0'
|
||
|
inf['support'] = 'debian'
|
||
|
inf['description'] = 'Agent machine all service settings (service start/stop operations, run a service/services as a start-up service...etc.) are defined with this plugin.'
|
||
|
inf['task'] = True
|
||
|
inf['user_oriented'] = False
|
||
|
inf['machine_oriented'] = False
|
||
|
inf['developer'] = 'cemre.alpsoy@agem.com.tr'
|
||
|
|
||
|
return inf
|