45 lines
1.1 KiB
Python
45 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
||
from comar.service import *
|
||
import os
|
||
|
||
serviceType = "local"
|
||
serviceDesc = _({"en": "Network Manager",
|
||
"tr": "Ağ Yöneticisi Hizmeti"})
|
||
serviceDefault = "conditional"
|
||
|
||
MSG_BACKEND_WARNING = _({
|
||
"en" : "NetworkManager is not enabled by default. You can change this from /etc/conf.d/NetworkManager.",
|
||
"tr" : "NetworkManager öntanımlı olarak etkin değil. /etc/conf.d/NetworkManager dosyasından bu ayarı değiştirebilirsiniz."
|
||
})
|
||
|
||
PIDFILE="/run/NetworkManager/NetworkManager.pid"
|
||
USETHIS=eval(config.get("DEFAULT", "True"))
|
||
|
||
@synchronized
|
||
def start():
|
||
if not USETHIS:
|
||
fail(MSG_BACKEND_WARNING)
|
||
|
||
startService(command="/usr/sbin/NetworkManager",
|
||
args="--pid-file=%s" % PIDFILE,
|
||
donotify=True)
|
||
|
||
@synchronized
|
||
def stop():
|
||
stopService(pidfile=PIDFILE,
|
||
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)
|