From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E3B961382C5 for ; Thu, 14 May 2020 22:19:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5CBC6E0C15; Thu, 14 May 2020 22:19:50 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 46F08E0C15 for ; Thu, 14 May 2020 22:19:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 88C5A350E40 for ; Thu, 14 May 2020 22:19:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA91B25D for ; Thu, 14 May 2020 22:19:45 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1589494774.57e5d82314089fe27caade61d77505684492da7b.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/kismet/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/kismet/files/kismet.initd-r2 X-VCS-Directories: net-wireless/kismet/files/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 57e5d82314089fe27caade61d77505684492da7b X-VCS-Branch: master Date: Thu, 14 May 2020 22:19:45 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fddc2fd6-9cc2-4a2e-b1e1-b40b551ff14d X-Archives-Hash: ab963acc1d49d3e6fed17dd850e5fd21 commit: 57e5d82314089fe27caade61d77505684492da7b Author: Michael Mair-Keimberger gmail com> AuthorDate: Wed Feb 5 08:17:02 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Thu May 14 22:19:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57e5d823 net-wireless/kismet: remove unused file Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/14563 Signed-off-by: Aaron Bauman gentoo.org> net-wireless/kismet/files/kismet.initd-r2 | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/net-wireless/kismet/files/kismet.initd-r2 b/net-wireless/kismet/files/kismet.initd-r2 deleted file mode 100644 index bc4374e6801..00000000000 --- a/net-wireless/kismet/files/kismet.initd-r2 +++ /dev/null @@ -1,18 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -start() { - ebegin "Starting kismet" - start-stop-daemon --start --quiet --pidfile /run/kismet.pid \ - --background --make-pidfile --exec /usr/bin/kismet \ - -1 /var/log/kismet.log -2 /var/log/kismet.log \ - -- --no-ncurses ${KISMET_SERVER_OPTIONS} - eend ${?} -} - -stop() { - ebegin "Stopping kismet" - start-stop-daemon --stop --quiet --pidfile /run/kismet.pid - eend ${?} -}