lightdm
This commit is contained in:
parent
19b54c65b4
commit
1b5b3798a4
|
@ -1,32 +1,31 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Begin /etc/rc.d/init.d/lxdm
|
# Begin /etc/rc.d/init.d/lightdm
|
||||||
|
|
||||||
### BEGIN INIT INFO
|
### BEGIN INIT INFO
|
||||||
# Provides: lxdm
|
# Provides: lightdm
|
||||||
# Required-Start: $local_fs
|
# Required-Start: $local_fs
|
||||||
# Should-Start: $remote_fs $syslog
|
# Should-Start: $remote_fs $syslog
|
||||||
# Required-Stop: $local_fs
|
# Required-Stop: $local_fs
|
||||||
# Should-Stop: $remote_fs $syslog
|
# Should-Stop: $remote_fs $syslog
|
||||||
# Default-Start: 5
|
# Default-Start: 5
|
||||||
# Default-Stop: 0 1 2 3 4 6
|
# Default-Stop: 0 1 2 3 4 6
|
||||||
# Short-Description: Starts lxdm.
|
# Short-Description: Starts lightdm.
|
||||||
# Description: Starts lxdm daemon.
|
# Description: Starts lightdm daemon.
|
||||||
# X-LFS-Provided-By: BLFS
|
# X-LFS-Provided-By: BLFS
|
||||||
### END INIT INFO
|
### END INIT INFO
|
||||||
|
|
||||||
. /lib/lsb/init-functions
|
. /lib/lsb/init-functions
|
||||||
|
#[ -e /opt/xorg/bin/X ] && . /etc/profile
|
||||||
|
|
||||||
BIN_FILE="/usr/bin/lightdm"
|
BIN_FILE="/usr/bin/lightdm"
|
||||||
|
|
||||||
#$LastChangedBy: ken $
|
#$LastChangedBy: bdubbs $
|
||||||
#$Date: 2014-09-11 17:27:58 -0500 (Thu, 11 Sep 2014) $
|
#$Date: 2018-01-05 12:17:22 -0600 (Fri, 05 Jan 2018) $
|
||||||
|
|
||||||
case $1 in
|
case $1 in
|
||||||
start)
|
start)
|
||||||
log_info_msg "Yerel ayarlar eklendi..."
|
|
||||||
yerel_ayar
|
|
||||||
log_info_msg "Starting lightdm..."
|
log_info_msg "Starting lightdm..."
|
||||||
start_daemon $BIN_FILE -d
|
start_daemon $BIN_FILE &
|
||||||
evaluate_retval
|
evaluate_retval
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue