init
This commit is contained in:
20
init.d/dbus
Executable file
20
init.d/dbus
Executable file
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/env watchman
|
||||
|
||||
service_command='/usr/bin/dbus-daemon'
|
||||
service_args='--system'
|
||||
service_pidfile='/run/dbus/pid'
|
||||
|
||||
start_pre() {
|
||||
/usr/bin/dbus-uuidgen --ensure=/etc/machine-id
|
||||
[[ -e /run/dbus ]] || { mkdir /run/dbus; }
|
||||
}
|
||||
|
||||
start() {
|
||||
start_pre
|
||||
watchman.start
|
||||
}
|
||||
|
||||
stop() {
|
||||
[[ -e "$service_pidfile" ]] && { rm "$service_pidfile"; }
|
||||
watchman.stop
|
||||
}
|
Reference in New Issue
Block a user