summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Delaney <idella4@gentoo.org>2015-07-28 12:20:04 +0000
committerIan Delaney <idella4@gentoo.org>2015-07-28 12:20:04 +0000
commit3e0e60d78c83db3516968cd6ab7e01d790d488c8 (patch)
treeb372139ea12f0f6330964fc0fd4297187458fa72 /app-admin/ulogd/files
parentEnable cairo only if xft is also enabled, bug 555622. (diff)
downloadgentoo-2-3e0e60d78c83db3516968cd6ab7e01d790d488c8.tar.gz
gentoo-2-3e0e60d78c83db3516968cd6ab7e01d790d488c8.tar.bz2
gentoo-2-3e0e60d78c83db3516968cd6ab7e01d790d488c8.zip
clean old version and matching init files, prompt by maintainer in bug #551520
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'app-admin/ulogd/files')
-rw-r--r--app-admin/ulogd/files/ulogd-2-ng.init41
-rw-r--r--app-admin/ulogd/files/ulogd-2.logrotate9
2 files changed, 0 insertions, 50 deletions
diff --git a/app-admin/ulogd/files/ulogd-2-ng.init b/app-admin/ulogd/files/ulogd-2-ng.init
deleted file mode 100644
index 3a0fc4d613d4..000000000000
--- a/app-admin/ulogd/files/ulogd-2-ng.init
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/ulogd/files/ulogd-2-ng.init,v 1.4 2015/06/01 02:15:36 idella4 Exp $
-
-ULOGD_PIDFILE="/run/ulogd.pid"
-ULOGD_BINARY="/usr/sbin/ulogd"
-ULOGD_OPTS="--daemon --uid ulogd --pidfile ${ULOGD_PIDFILE}"
-
-extra_started_commands="reload reopen_logs"
-
-depend() {
- before iptables ip6tables ebtables firewall
- after mysql postgresql
-}
-
-start() {
- ebegin "Starting ${SVCNAME}"
- start-stop-daemon --start \
- --exec ${ULOGD_BINARY} --pidfile ${ULOGD_PIDFILE} \
- -- ${ULOGD_OPTS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${SVCNAME}"
- start-stop-daemon --stop --pidfile ${ULOGD_PIDFILE}
- eend $?
-}
-
-reload() {
- ebegin "Reloading ${SVCNAME} configuration"
- start-stop-daemon --signal USR1 --pidfile ${ULOGD_PIDFILE}
- eend $?
-}
-
-reopen_logs() {
- ebegin "Reopening ${SVCNAME} logfiles"
- start-stop-daemon --signal HUP --pidfile ${ULOGD_PIDFILE}
- eend $?
-}
diff --git a/app-admin/ulogd/files/ulogd-2.logrotate b/app-admin/ulogd/files/ulogd-2.logrotate
deleted file mode 100644
index 787f49b6fcb0..000000000000
--- a/app-admin/ulogd/files/ulogd-2.logrotate
+++ /dev/null
@@ -1,9 +0,0 @@
-/var/log/ulogd/ulogd.log /var/log/ulogd/ulogd_syslogemu.log {
- sharedscripts
- missingok
- notifempty
- create 0640 ulogd
- postrotate
- /etc/init.d/ulogd reopen_logs > /dev/null
- endscript
-}