25 lines
609 B
Python
25 lines
609 B
Python
# -*- coding: utf-8 -*-
|
|
from comar.service import *
|
|
|
|
serviceType = "server"
|
|
serviceDesc = _({"en": "DHCP Relay Server",
|
|
"tr": "DHCP Relay Servisi"})
|
|
serviceConf = "dhcrelay"
|
|
|
|
pidfile = "/run/dhcrelay.pid"
|
|
|
|
@synchronized
|
|
def start():
|
|
startService(command="/usr/sbin/dhcrelay",
|
|
args="%s %s" % (config.get("DHCPD_ARGS", ""), config.get("INTERFACES", "")),
|
|
donotify=True)
|
|
|
|
@synchronized
|
|
def stop():
|
|
stopService(command="/usr/sbin/dhcpd",
|
|
pidfile=pidfile,
|
|
donotify=True)
|
|
|
|
def status():
|
|
return isServiceRunning(pidfile)
|