Files
main/server/postfix/comar/service.py
T
2016-02-27 16:45:47 +02:00

25 lines
588 B
Python

from comar.service import *
serviceType = "server"
serviceDesc = _({"en": "Postfix Mail Server",
"tr": "Postfix E-Posta Sunucusu"})
@synchronized
def start():
startService(command="/usr/sbin/postfix",
args="start",
donotify=True)
@synchronized
def stop():
stopService(command="/usr/sbin/postfix",
args="stop",
donotify=True)
def reload():
stopService(command="/usr/sbin/postfix",
args="reload")
def status():
return isServiceRunning(command="/usr/lib/postfix/master")