Files
core/system/base/dhcpcd/comar/service.py
T

45 lines
1.1 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# -*- coding: utf-8 -*-
from comar.service import *
import os
serviceType = "local"
serviceDefault = "conditional"
serviceDesc = _({"en": "Dhcp client",
"tr": "Dhcp istemcisi"})
MSG_BACKEND_WARNING = _({
"en" : "dhcp is not enabled by default. You can change this from /etc/dhcpcd.conf.",
"tr" : "dhcp öntanımlı olarak etkin değil. /etc/dhcpcd.conf dosyasından bu ayarı değiştirebilirsiniz."
})
pidfile="/var/run/dhcpcd.pid"
USETHIS=eval(config.get("DEFAULT", "True"))
@synchronized
def start():
if not USETHIS:
fail(MSG_BACKEND_WARNING)
startService(command="/usr/bin/dhcpcd",
args="daemon -q -b %s" % pidfile,
donotify=True)
@synchronized
def stop():
stopService(command="/usr/bin/dhcpcd -x",
donotify=True)
try:
os.unlink(pidfile)
except:
pass
def ready():
if not USETHIS:
fail(MSG_BACKEND_WARNING)
else:
start()
def status():
return isServiceRunning(pidfile=pidfile)