123456789101112131415161718192021222324252627282930313233343536 |
- # -*- 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)
|