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 ACDB9158090 for ; Thu, 26 May 2022 20:31:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE5E7E0828; Thu, 26 May 2022 20:31:37 +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 A44D5E0828 for ; Thu, 26 May 2022 20:31:37 +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 99CED3418D5 for ; Thu, 26 May 2022 20:31:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A6C14D4 for ; Thu, 26 May 2022 20:31:33 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1653597043.86050840cdca4973e35ea81d2101b4d63d5cbf80.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/syncthing/files/syncthing.initd-r1 X-VCS-Directories: net-p2p/syncthing/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 86050840cdca4973e35ea81d2101b4d63d5cbf80 X-VCS-Branch: master Date: Thu, 26 May 2022 20:31:33 +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: 4052bca7-9a20-4c83-9d60-4ee13c25aa1d X-Archives-Hash: 89d4887ca83c8bc1a4c6bf4e92160283 commit: 86050840cdca4973e35ea81d2101b4d63d5cbf80 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Thu May 26 18:14:25 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu May 26 20:30:43 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86050840 net-p2p/syncthing: 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/25649 Signed-off-by: Conrad Kostecki gentoo.org> net-p2p/syncthing/files/syncthing.initd-r1 | 32 ------------------------------ 1 file changed, 32 deletions(-) diff --git a/net-p2p/syncthing/files/syncthing.initd-r1 b/net-p2p/syncthing/files/syncthing.initd-r1 deleted file mode 100644 index cc7e1b75e985..000000000000 --- a/net-p2p/syncthing/files/syncthing.initd-r1 +++ /dev/null @@ -1,32 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -SYNCTHING_USER=${SYNCTHING_USER:-syncthing} -SYNCTHING_GROUP=${SYNCTHING_GROUP:-syncthing} -SYNCTHING_HOMEDIR=${SYNCTHING_HOMEDIR:-/var/lib/syncthing/.config/syncthing} -SYNCTHING_LOGFILE=${SYNCTHING_LOGFILE:-/var/log/syncthing/syncthing.log} -SYNCTHING_UMASK=${SYNCTHING_UMASK:-007} -SYNCTHING_IONICE=${SYNCTHING_IONICE:-0} -SYNCTHING_NICE=${SYNCTHING_NICE:-0} - -description="Syncthing is an open, trustworthy and decentralized cloud storage system" -command="/usr/bin/syncthing" -command_args="-no-browser -home=${SYNCTHING_HOMEDIR} ${SYNCTHING_OPTS}" -pidfile="/run/syncthing.pid" -command_background="yes" -command_user="${SYNCTHING_USER}:${SYNCTHING_GROUP}" -umask="${SYNCTHING_UMASK}" -start_stop_daemon_args="--ionice ${SYNCTHING_IONICE} \ - --nicelevel ${SYNCTHING_NICE}" -output_log="\"${SYNCTHING_LOGFILE}\"" -error_log="\"${SYNCTHING_LOGFILE}\"" - -depend() { - need localmount net -} - -start_pre() { - checkpath -q -d -o ${SYNCTHING_USER}:${SYNCTHING_GROUP} ${SYNCTHING_HOMEDIR} - checkpath -q -f -o ${SYNCTHING_USER}:${SYNCTHING_GROUP} ${SYNCTHING_LOGFILE} -}