36 lines
662 B
Python
36 lines
662 B
Python
# -*- coding: utf-8 -*-
|
|
from comar.service import *
|
|
import os
|
|
|
|
serviceType="server"
|
|
serviceDesc=_({"en": "lxdm Server",
|
|
"tr": "lxdm Sunucusu"})
|
|
serviceDefault="on"
|
|
PIDFILE="/run/lxdm.pid"
|
|
DAEMON="/usr/sbin/lxdm"
|
|
|
|
@synchronized
|
|
def start():
|
|
if status():
|
|
return
|
|
|
|
reply = startService(command=DAEMON,
|
|
pidfile=PIDFILE,
|
|
donotify=True)
|
|
|
|
if reply == 0:
|
|
run("/usr/sbin/lxdm")
|
|
|
|
@synchronized
|
|
def stop():
|
|
stopService(pidfile=PIDFILE,
|
|
donotify=True)
|
|
|
|
try:
|
|
os.unlink(PIDFILE)
|
|
except OSError:
|
|
pass
|
|
|
|
def status():
|
|
return isServiceRunning(PIDFILE)
|