From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6D81A138206 for ; Thu, 28 Apr 2016 23:44:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64B2F21C049; Thu, 28 Apr 2016 23:44:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C138821C023 for ; Thu, 28 Apr 2016 23:44:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E755F340CFB for ; Thu, 28 Apr 2016 23:44:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5A41333 for ; Thu, 28 Apr 2016 23:44:35 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1461881372.354597dde07e9de89f121f06b9ef6e2c449dc349.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/maradns/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/maradns/files/maradns.rc6 net-dns/maradns/files/zoneserver.rc6 X-VCS-Directories: net-dns/maradns/files/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 354597dde07e9de89f121f06b9ef6e2c449dc349 X-VCS-Branch: master Date: Thu, 28 Apr 2016 23:44:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9d988a48-1050-4f51-856f-9b90148fff2e X-Archives-Hash: 82da03a7b1703b395d594d79751765ba commit: 354597dde07e9de89f121f06b9ef6e2c449dc349 Author: Austin English gentoo org> AuthorDate: Thu Apr 28 22:09:32 2016 +0000 Commit: Austin English gentoo org> CommitDate: Thu Apr 28 22:09:32 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=354597dd net-dns/maradns: remove unused init scripts net-dns/maradns/files/maradns.rc6 | 23 ----------------------- net-dns/maradns/files/zoneserver.rc6 | 21 --------------------- 2 files changed, 44 deletions(-) diff --git a/net-dns/maradns/files/maradns.rc6 b/net-dns/maradns/files/maradns.rc6 deleted file mode 100644 index 32db2e4..0000000 --- a/net-dns/maradns/files/maradns.rc6 +++ /dev/null @@ -1,23 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -depend() { - need net - provide dns -} - -start() { - ebegin "Starting maradns" - start-stop-daemon --start --quiet --name maradns \ - --exec /usr/bin/duende /usr/sbin/maradns - eend $? -} - -stop() { - ebegin "Stopping maradns" - start-stop-daemon --stop --quiet --name maradns \ - --exec /usr/sbin/duende - eend $? -} diff --git a/net-dns/maradns/files/zoneserver.rc6 b/net-dns/maradns/files/zoneserver.rc6 deleted file mode 100644 index 9d175a6..0000000 --- a/net-dns/maradns/files/zoneserver.rc6 +++ /dev/null @@ -1,21 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -depend() { - need net -} - -start() { - ebegin "Starting zoneserver" - start-stop-daemon --start --quiet --name zoneserver \ - --exec /usr/bin/duende /usr/sbin/zoneserver - eend $? -} - -stop() { - ebegin "Stopping zoneserver" - start-stop-daemon --stop --quiet --name zoneserver - eend $? -}