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 D407C158087 for ; Thu, 13 Jan 2022 08:06:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8AAAB2BC01A; Thu, 13 Jan 2022 08:06:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 59ADB2BC01A for ; Thu, 13 Jan 2022 08:06:05 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 888AA342EE8 for ; Thu, 13 Jan 2022 08:06:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7A0C239 for ; Thu, 13 Jan 2022 08:06:01 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1642061160.4489dcef439770791ec27e05b9b7b679ea431f1a.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/zabbix/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/zabbix/files/zabbix-server.init X-VCS-Directories: net-analyzer/zabbix/files/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 4489dcef439770791ec27e05b9b7b679ea431f1a X-VCS-Branch: master Date: Thu, 13 Jan 2022 08:06:01 +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: cfaa9fca-e29c-437a-8ac0-79da787921d1 X-Archives-Hash: 34f7f36ff90dce00b1f19f0564871a93 commit: 4489dcef439770791ec27e05b9b7b679ea431f1a Author: Michael Mair-Keimberger levelnine at> AuthorDate: Wed Jan 12 19:12:42 2022 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Thu Jan 13 08:06:00 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4489dcef net-analyzer/zabbix: remove unused file Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/23761 Signed-off-by: Miroslav Šulc gentoo.org> net-analyzer/zabbix/files/zabbix-server.init | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/net-analyzer/zabbix/files/zabbix-server.init b/net-analyzer/zabbix/files/zabbix-server.init deleted file mode 100644 index b0bf752abaf7..000000000000 --- a/net-analyzer/zabbix/files/zabbix-server.init +++ /dev/null @@ -1,19 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -command="/usr/sbin/zabbix_server" -command_args="--foreground --config /etc/zabbix/zabbix_server.conf" -command_background="true" -command_user="zabbix:zabbix" -pidfile="/run/${RC_SVCNAME}.pid" - -depend() { - need net - use mysql postgresql -} - -start_pre() { - checkpath -q -d -m 0750 -o root:zabbix /etc/zabbix - checkpath -q -f -m 0640 -o root:zabbix /etc/zabbix/*.conf -}