dhcpcd: added service.py
This commit is contained in:
@@ -20,11 +20,12 @@ def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DBDIR=/var/lib/dhcpcd LIBEXECDIR=/lib/dhcpcd DESTDIR=%s" % get.installDIR())
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
# Set Options in /etc/dhcpcd.conf Disable ip4vall
|
||||
shelltools.echo("%s/etc/dhcpcd.conf" % get.installDIR(), "noipv4ll")
|
||||
# Remove hooks install the compat one
|
||||
pisitools.remove("/lib/dhcpcd/dhcpcd-hooks/*")
|
||||
pisitools.insinto("/lib/dhcpcd/dhcpcd-hooks", "dhcpcd-hooks/50-dhcpcd-compat")
|
||||
pisitools.remove("/usr/lib/dhcpcd/dhcpcd-hooks/*")
|
||||
pisitools.insinto("/usr/lib/dhcpcd/dhcpcd-hooks", "dhcpcd-hooks/50-dhcpcd-compat")
|
||||
|
||||
pisitools.dodoc("README")
|
||||
#DBDIR=/var/lib/dhcpcd LIBEXECDIR=/usr/lib/dhcpcd
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
# -*- 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)
|
||||
@@ -26,18 +26,22 @@
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="data">/lib/dhcpcd</Path>
|
||||
<Path fileType="library">/usr/lib/dhcpcd/dev/udev.so</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="library">/usr/lib/dhcpcd</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="man">/usr/share/dhcpcd</Path>
|
||||
<Path fileType="data">/var/lib/dhcpcd</Path>
|
||||
<Path fileType="data">/run/dhcp</Path>
|
||||
</Files>
|
||||
<Provides>
|
||||
<COMAR script="service.py">System.Service</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2017-02-21</Date>
|
||||
<Date>2017-02-23</Date>
|
||||
<Version>6.11.5</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
|
||||
Reference in New Issue
Block a user