mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-13 04:32:16 +03:00
16 lines
No EOL
424 B
Python
16 lines
No EOL
424 B
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
def info():
|
|
inf = dict()
|
|
inf['name'] = 'disk-quota'
|
|
inf['version'] = '1.0.0'
|
|
inf['support'] = 'debian'
|
|
inf['description'] = 'Disk-Quota plugin provides to get current soft - hard quota and changing them.'
|
|
inf['task'] = True
|
|
inf['user_oriented'] = True
|
|
inf['machine_oriented'] = False
|
|
inf['developer'] = 'mine.dogan@agem.com.tr'
|
|
|
|
return inf |