Files
main/server/bind/comar/chroot_service.py

29 lines
815 B
Python

# -*- coding: utf-8 -*-
import os
from comar.service import *
serviceType = "server"
serviceDesc = _({"en": "BIND Daemon (chroot)",
"tr": "BIND Servisi (chroot)"})
serviceConf = "named"
chrootDir = "/var/named/chroot"
PIDFILE = "%s/var/run/named/named.pid" % chrootDir
@synchronized
def start():
startService(command="/usr/sbin/named",
args="-u named -n %s %s -t %s" % (config.get("CPU", "1"),
config.get("OPTIONS", ""),
chrootDir),
makepid=True,
pidfile=PIDFILE,
donotify=True)
@synchronized
def stop():
stopService(pidfile=PIDFILE,
donotify=True)
def status():
return isServiceRunning(PIDFILE)