mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
17 lines
232 B
Bash
Executable File
17 lines
232 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# start D-BUS daemon
|
|
#
|
|
# runlevels: openelec, text, debug
|
|
|
|
. /etc/sysconfig
|
|
|
|
progress "Starting ConsoleKit"
|
|
|
|
install -m 755 -d /var/log/ConsoleKit
|
|
install -m 755 -d /var/run/ConsoleKit
|
|
|
|
ck-log-system-start
|
|
|
|
exit 0
|