works for openldap

This commit is contained in:
Ertuğrul Erata
2015-07-03 16:32:16 +03:00
parent cac083e613
commit 087fcd1c3e
58 changed files with 3236 additions and 5 deletions
+17
View File
@@ -0,0 +1,17 @@
# -*- coding: utf-8 -*-
from comar.service import *
serviceType = "server"
serviceDesc = _({"en": "Slurpd Daemon",
"tr": "Slurpd Servisi"})
def start():
startService(command="/usr/libexec/slurpd",
donotify=True)
def stop():
stopService(command="/usr/libexec/slurpd",
donotify=True)
def status():
return isServiceRunning(command="/usr/libexec/slurpd")