From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1431103-garchives=archives.gentoo.org@lists.gentoo.org> 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 1F8BB158094 for <garchives@archives.gentoo.org>; Sat, 27 Aug 2022 23:15:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 433ADE0B51; Sat, 27 Aug 2022 23:15:05 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2DDE1E0B58 for <gentoo-commits@lists.gentoo.org>; Sat, 27 Aug 2022 23:15: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CEE3C3414D7 for <gentoo-commits@lists.gentoo.org>; Sat, 27 Aug 2022 13:21:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DECA56D for <gentoo-commits@lists.gentoo.org>; Sat, 27 Aug 2022 13:21:16 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1661606459.1409c9fde13239de5e8713359988b4839ce2ae22.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/hylafaxplus/, net-misc/hylafaxplus/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/hylafaxplus/files/hylafaxplus-init-r1 net-misc/hylafaxplus/hylafaxplus-7.0.3-r3.ebuild net-misc/hylafaxplus/hylafaxplus-7.0.3-r4.ebuild X-VCS-Directories: net-misc/hylafaxplus/files/ net-misc/hylafaxplus/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1409c9fde13239de5e8713359988b4839ce2ae22 X-VCS-Branch: master Date: Sat, 27 Aug 2022 13:21:16 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9c705c52-e1ed-4011-8b78-32952d549349 X-Archives-Hash: 28644ae98d17dc807cb3baacb53343f9 commit: 1409c9fde13239de5e8713359988b4839ce2ae22 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Aug 27 13:20:59 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Aug 27 13:20:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1409c9fd net-misc/hylafaxplus: tidy up init script a bit further deux Bug: https://bugs.gentoo.org/849269 See: a94e38544f0927e94325ad851a55c26763cae33a Signed-off-by: Sam James <sam <AT> gentoo.org> net-misc/hylafaxplus/files/hylafaxplus-init-r1 | 10 +++++----- ...hylafaxplus-7.0.3-r3.ebuild => hylafaxplus-7.0.3-r4.ebuild} | 0 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/net-misc/hylafaxplus/files/hylafaxplus-init-r1 b/net-misc/hylafaxplus/files/hylafaxplus-init-r1 index fd70fe02d657..9a602b44aa70 100644 --- a/net-misc/hylafaxplus/files/hylafaxplus-init-r1 +++ b/net-misc/hylafaxplus/files/hylafaxplus-init-r1 @@ -52,7 +52,7 @@ checkconfig() { if [ x${PIDDIR} = x ] ; then PIDDIR=${SPOOL} else - PIDDIR=${PIDDIR} + PIDDIR=${piddir} fi @@ -159,12 +159,12 @@ zap() { ebegin "Zap HylaFAX server daemon files" - if [ -f ${PIDFILE}/hfaxd.pid ] ; then - rm -f ${PIDFILE}/hfaxd.pid + if [ -f ${PIDDIR}/hfaxd.pid ] ; then + rm -f ${PIDDIR}/hfaxd.pid fi - if [ -f ${PIDFILE}/faxq.pid ] ; then - rm -f ${PIDFILE}/faxq.pid + if [ -f ${PIDDIR}/faxq.pid ] ; then + rm -f ${PIDDIR}/faxq.pid fi } diff --git a/net-misc/hylafaxplus/hylafaxplus-7.0.3-r3.ebuild b/net-misc/hylafaxplus/hylafaxplus-7.0.3-r4.ebuild similarity index 100% rename from net-misc/hylafaxplus/hylafaxplus-7.0.3-r3.ebuild rename to net-misc/hylafaxplus/hylafaxplus-7.0.3-r4.ebuild