mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 02:57:13 +08:00
25 lines
271 B
Plaintext
25 lines
271 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
. /etc/rc.conf
|
||
|
. /etc/rc.d/functions
|
||
|
|
||
|
case "$1" in
|
||
|
start)
|
||
|
stat_busy "Configuring video driver"
|
||
|
/opt/chakra/bin/xorg-config.sh
|
||
|
stat_done
|
||
|
;;
|
||
|
|
||
|
stop)
|
||
|
;;
|
||
|
|
||
|
restart)
|
||
|
$0 stop
|
||
|
sleep 1
|
||
|
$0 start
|
||
|
;;
|
||
|
|
||
|
*)
|
||
|
echo "usage: $0 {start|stop|restart}"
|
||
|
esac
|