Initial commit on github.

This commit is contained in:
Roland Jax
2013-11-14 21:15:14 +01:00
parent 36fc9f23c2
commit 916ec20456
37 changed files with 8561 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
# /etc/conf.d/ebusd: config file for /etc/init.d/ebusd
# Options to pass to the ebusd daemon.
# See the ebusd -h for more info.
EBUSD_ARGS=""
+21
View File
@@ -0,0 +1,21 @@
#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
#extra_started_commands="reload"
command="/usr/sbin/ebusd"
command_args="${EBUSD_ARGS}"
start_stop_daemon_args="--quiet"
description="Daemon for ebus Communication"
depend() {
need localmount
use logger
}
#reload() {
# ebegin "Reloading ebusd configuration"
# start-stop-daemon --exec $command --signal HUP
# eend $?
#}