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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5C33A158041 for ; Tue, 27 Feb 2024 23:20:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0CE7E2B23; Tue, 27 Feb 2024 23:20:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 81F37E2B23 for ; Tue, 27 Feb 2024 23:20:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 950C533BEFF for ; Tue, 27 Feb 2024 23:20:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F1F5A1301 for ; Tue, 27 Feb 2024 23:20:23 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1709076000.64d28710783d1988847acde1e560b50e9bcdeb3f.mpagano@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/nginx-unit/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-servers/nginx-unit/files/nginx-unit.initd www-servers/nginx-unit/files/nginx-unit.initd-r1 X-VCS-Directories: www-servers/nginx-unit/files/ X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: 64d28710783d1988847acde1e560b50e9bcdeb3f X-VCS-Branch: master Date: Tue, 27 Feb 2024 23:20:23 +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: cfdd919d-d3aa-49bb-a41e-cd9c736d30c3 X-Archives-Hash: a3db531b62595223726382ed37215c18 commit: 64d28710783d1988847acde1e560b50e9bcdeb3f Author: Mike Pagano gentoo org> AuthorDate: Tue Feb 27 23:20:00 2024 +0000 Commit: Mike Pagano gentoo org> CommitDate: Tue Feb 27 23:20:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64d28710 www-servers/nginx-unit/files: Remove unused patches Signed-off-by: Mike Pagano gentoo.org> www-servers/nginx-unit/files/nginx-unit.initd | 14 ------------- www-servers/nginx-unit/files/nginx-unit.initd-r1 | 25 ------------------------ 2 files changed, 39 deletions(-) diff --git a/www-servers/nginx-unit/files/nginx-unit.initd b/www-servers/nginx-unit/files/nginx-unit.initd deleted file mode 100644 index f7bd33af9334..000000000000 --- a/www-servers/nginx-unit/files/nginx-unit.initd +++ /dev/null @@ -1,14 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -command="/usr/sbin/unitd" -pidfile="/run/nginx-unit.pid" - -depend() { - use dns logger netmount -} - -start_pre() { - checkpath -d /var/lib/nginx-unit -o root:root -m 0770 -} diff --git a/www-servers/nginx-unit/files/nginx-unit.initd-r1 b/www-servers/nginx-unit/files/nginx-unit.initd-r1 deleted file mode 100644 index 32ef624d2103..000000000000 --- a/www-servers/nginx-unit/files/nginx-unit.initd-r1 +++ /dev/null @@ -1,25 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -command="/usr/sbin/unitd" -pidfile="/run/nginx-unit.pid" -NXT_USER=${NXT_USER:-nginx-unit} -NXT_GROUP=${NXT_GROUP:-nginx-unit} -NXT_CONTROL=${NXT_CONTROL:-unix:/run/nginx-unit.sock} -NXT_PID=${NXT_PID:-/run/nginx-unit.pid} -NXT_LOG=${NXT_LOG:-/var/log/nginx-unit} -NXT_MODULES=${NXT_MODULES:-/usr/lib64/nginx-unit} -NXT_STATE=${NXT_STATE:-/var/lib/nginx-unit} -NXT_TMP=${NXT_TMP:-/usr/tmp} - -command_args=" --user ${NXT_USER} --group ${NXT_GROUP} --control ${NXT_CONTROL} --pid ${NXT_PID} --log ${NXT_LOG} --modules ${NXT_MODULES} --state ${NXT_STATE} --tmp ${NXT_TMP}" - -depend() { - use dns logger netmount -} - -start_pre() { - checkpath -d /var/lib/nginx-unit -o root:root -m 0770 -} -