]> Frank Brehm's Git Trees - config/berta/etc.git/commitdiff
committing changes in /etc after emerge run
authorFrank Brehm <frank@brehm-online.com>
Wed, 21 Dec 2016 15:16:25 +0000 (16:16 +0100)
committerFrank Brehm <frank@brehm-online.com>
Wed, 21 Dec 2016 15:16:25 +0000 (16:16 +0100)
Package changes:
+net-analyzer/rrdtool-1.5.5

.etckeeper
conf.d/rrdcached [new file with mode: 0644]
init.d/rrdcached [new file with mode: 0755]

index b50cd515a8d0a20ed5a0fc280bfcb0bda8a9762b..82d7ff0b7d1820747c8ed3eb61e1eaac92addebf 100755 (executable)
@@ -128,6 +128,7 @@ maybe chmod 0644 'conf.d/php-fpm'
 maybe chmod 0644 'conf.d/pydoc-2.7'
 maybe chmod 0644 'conf.d/pydoc-3.4'
 maybe chmod 0644 'conf.d/rarpd'
+maybe chmod 0644 'conf.d/rrdcached'
 maybe chmod 0644 'conf.d/rsyncd'
 maybe chmod 0644 'conf.d/rsyslog'
 maybe chmod 0644 'conf.d/saslauthd'
@@ -408,6 +409,7 @@ maybe chmod 0755 'init.d/pydoc-2.7'
 maybe chmod 0755 'init.d/pydoc-3.4'
 maybe chmod 0755 'init.d/rarpd'
 maybe chmod 0755 'init.d/root'
+maybe chmod 0755 'init.d/rrdcached'
 maybe chmod 0755 'init.d/rsyncd'
 maybe chmod 0755 'init.d/rsyslog'
 maybe chmod 0755 'init.d/runsvdir'
diff --git a/conf.d/rrdcached b/conf.d/rrdcached
new file mode 100644 (file)
index 0000000..0463a79
--- /dev/null
@@ -0,0 +1,8 @@
+RRCACHE_ARGS="-l unix:/var/run/rrdcached.sock -j /var/lib/rrdcached/journal/ -F  -b /var/lib/rrdcached/db/ -B"
+
+USER=""
+GROUP=""
+
+MODE=""
+
+MAXWAIT=30
diff --git a/init.d/rrdcached b/init.d/rrdcached
new file mode 100755 (executable)
index 0000000..364695e
--- /dev/null
@@ -0,0 +1,14 @@
+#!/sbin/openrc-run
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+command="/usr/bin/rrdcached"
+command_args="${RRCACHE_ARGS} -p /run/rrdcached.pid"
+start_stop_daemon_args="--quiet"
+description="RRDtool data caching daemon"
+
+depend() {
+       need localmount net
+       use logger
+}