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