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 00BC21382C5 for ; Sat, 24 Mar 2018 20:14:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0366EE0801; Sat, 24 Mar 2018 20:14:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 CDC16E0801 for ; Sat, 24 Mar 2018 20:14:09 +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 43BBA335C09 for ; Sat, 24 Mar 2018 20:14:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB11D266 for ; Sat, 24 Mar 2018 20:14:05 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1521922441.aa23a20186a954e81dfb973be73d6e9cf2d03ce0.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-power/acpid/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-power/acpid/files/acpid-2.0.16-init.d X-VCS-Directories: sys-power/acpid/files/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: aa23a20186a954e81dfb973be73d6e9cf2d03ce0 X-VCS-Branch: master Date: Sat, 24 Mar 2018 20:14:05 +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: f386c9e1-d86f-4574-af14-e8185cee842e X-Archives-Hash: a713619347152de5815793219ad6d0e3 commit: aa23a20186a954e81dfb973be73d6e9cf2d03ce0 Author: Michael Mair-Keimberger gmail com> AuthorDate: Thu Mar 22 19:46:20 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Mar 24 20:14:01 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa23a201 sys-power/acpid: remove unused file. Closes: https://github.com/gentoo/gentoo/pull/7555 sys-power/acpid/files/acpid-2.0.16-init.d | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/sys-power/acpid/files/acpid-2.0.16-init.d b/sys-power/acpid/files/acpid-2.0.16-init.d deleted file mode 100644 index 642d8008ccd..00000000000 --- a/sys-power/acpid/files/acpid-2.0.16-init.d +++ /dev/null @@ -1,20 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -extra_started_commands="reload" -command="/usr/sbin/acpid" -command_args="${ACPID_ARGS}" -start_stop_daemon_args="--quiet" -description="Daemon for Advanced Configuration and Power Interface" - -depend() { - need localmount - use logger -} - -reload() { - ebegin "Reloading acpid configuration" - start-stop-daemon --exec $command --signal HUP - eend $? -}