From patchwork Wed Sep 16 15:35:03 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Michael Nosthoff X-Patchwork-Id: 1365414 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.137; helo=fraxinus.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=busybox.net Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=heine.tech header.i=@heine.tech header.a=rsa-sha256 header.s=dkim header.b=joaH/WeM; dkim-atps=neutral Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4Bs41l3PqGz9sSC for ; Thu, 17 Sep 2020 01:35:55 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 240A384034; Wed, 16 Sep 2020 15:35:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qkKxL8P-PKul; Wed, 16 Sep 2020 15:35:52 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 8F431868B4; Wed, 16 Sep 2020 15:35:52 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 3518B1BF977 for ; Wed, 16 Sep 2020 15:35:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 3174085617 for ; Wed, 16 Sep 2020 15:35:29 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id kcFbs3AyqDOH for ; Wed, 16 Sep 2020 15:35:28 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.heine.tech (mail.heine.tech [195.201.24.99]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 2D40184034 for ; Wed, 16 Sep 2020 15:35:28 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 4BDE818150D; Wed, 16 Sep 2020 17:35:25 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heine.tech; s=dkim; t=1600270525; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=TL+bdL+xIqCth53Cr1/+qQNPYBObts+9YGNYYF/7gcs=; b=joaH/WeMd6/qK8ebiyd6ktEgP0A84+G8ilSeeiDMWZC2dKjkd2RGb7uknN0kP7LBEzfv8E rx+e/Uw3zAr1G4gLOKmsEAGX2gSN275zAkp/l9CCoePejdyl26nl9vsiS1sd0qL/FV9y3s ZNSHTf+rOOokeA3PXHHgCO8pUYv00+Q= To: buildroot@buildroot.org Date: Wed, 16 Sep 2020 17:35:03 +0200 Message-Id: <20200916153510.476-1-buildroot@heine.tech> In-Reply-To: <20200916153340.345-1-buildroot@heine.tech> References: <20200916153340.345-1-buildroot@heine.tech> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 Subject: [Buildroot] [PATCH v3 1/8] package/nginx: use /run for PIDFile X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Michael Nosthoff via buildroot Reply-To: Michael Nosthoff Cc: Michael Nosthoff , Samuel Martin Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Fixes: systemd[1]: /usr/lib/systemd/system/nginx.service:7: PIDFile= references a path below legacy directory /var/run/, updating /var/run/nginx.pid → /run/nginx.pid; please update the unit file accordingly. Signed-off-by: Michael Nosthoff --- package/nginx/nginx.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/nginx/nginx.service b/package/nginx/nginx.service index 320df9a80e..9fd215fd3e 100644 --- a/package/nginx/nginx.service +++ b/package/nginx/nginx.service @@ -4,7 +4,7 @@ After=syslog.target network.target [Service] Type=forking -PIDFile=/var/run/nginx.pid +PIDFile=/run/nginx.pid ExecStartPre=/usr/bin/mkdir -p /var/log/nginx /var/tmp/nginx ExecStartPre=/usr/sbin/nginx -t -q -g 'pid /var/run/nginx.pid; daemon on; master_process on;' ExecStart=/usr/sbin/nginx -g 'pid /var/run/nginx.pid; daemon on; master_process on;' From patchwork Wed Sep 16 15:35:04 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Michael Nosthoff X-Patchwork-Id: 1365415 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.133; helo=hemlock.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=busybox.net Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=heine.tech header.i=@heine.tech header.a=rsa-sha256 header.s=dkim header.b=rkiXyPz0; dkim-atps=neutral Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4Bs41p1dWhz9sTQ for ; Thu, 17 Sep 2020 01:35:56 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 543AF873D9; Wed, 16 Sep 2020 15:35:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id woylmdmJVQ8g; Wed, 16 Sep 2020 15:35:53 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id D2406873D7; Wed, 16 Sep 2020 15:35:53 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 892DC1BF977 for ; Wed, 16 Sep 2020 15:35:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 83721873D8 for ; Wed, 16 Sep 2020 15:35:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id h-uwWYzYiyUl for ; Wed, 16 Sep 2020 15:35:29 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.heine.tech (mail.heine.tech [195.201.24.99]) by hemlock.osuosl.org (Postfix) with ESMTPS id B9A13873D5 for ; Wed, 16 Sep 2020 15:35:29 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id D6FF718150E; Wed, 16 Sep 2020 17:35:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heine.tech; s=dkim; t=1600270528; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=SASA9Zr9MWS3qX0t2jp2eGVyOrzHpc5TGtdzVvlgYV0=; b=rkiXyPz0yu/whtPueL07GrAx0md84tH4mZ4VZHT+KoUk4POrqKPhQiBtN+CIcYXX+qdxUq fCAApZ7uGHJqFENf3h6VbKpzwCDtyginZTAoPekQjmYdGbiSOKN//fmgx4SqHYKrSfxpXm dKXGCToy3gBdCmPuhA+JOb6yL1Rnw44= To: buildroot@buildroot.org Date: Wed, 16 Sep 2020 17:35:04 +0200 Message-Id: <20200916153510.476-2-buildroot@heine.tech> In-Reply-To: <20200916153510.476-1-buildroot@heine.tech> References: <20200916153340.345-1-buildroot@heine.tech> <20200916153510.476-1-buildroot@heine.tech> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 Subject: [Buildroot] [PATCH v3 2/8] package/bandwithd: use /run for PIDFile X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Michael Nosthoff via buildroot Reply-To: Michael Nosthoff Cc: Michael Nosthoff , Nathaniel Roach Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Fixes: PIDFile= references a path below legacy directory /var/run/, updating /var/run/bandwithd.pid → /run/bandwithd.pid; please update the unit file accordingly. Signed-off-by: Michael Nosthoff --- package/bandwidthd/bandwidthd.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/bandwidthd/bandwidthd.service b/package/bandwidthd/bandwidthd.service index 9c03d42946..ab7f05a2e8 100644 --- a/package/bandwidthd/bandwidthd.service +++ b/package/bandwidthd/bandwidthd.service @@ -5,7 +5,7 @@ After=network.target [Service] Type=forking ExecStart=/usr/bin/bandwidthd -PIDFile=/var/run/bandwidthd.pid +PIDFile=/run/bandwidthd.pid [Install] WantedBy=multi-user.target From patchwork Wed Sep 16 15:35:05 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Michael Nosthoff X-Patchwork-Id: 1365413 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.138; helo=whitealder.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=busybox.net Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=heine.tech header.i=@heine.tech header.a=rsa-sha256 header.s=dkim header.b=jq3HMogk; dkim-atps=neutral Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4Bs41p1f8Bz9sTs for ; Thu, 17 Sep 2020 01:35:57 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C026387138; Wed, 16 Sep 2020 15:35:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xDaxKxhFwmnx; Wed, 16 Sep 2020 15:35:55 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 1CFFC87143; Wed, 16 Sep 2020 15:35:55 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 8D7891BF977 for ; Wed, 16 Sep 2020 15:35:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 866AD873D8 for ; Wed, 16 Sep 2020 15:35:33 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sMkX2hhWTSUm for ; Wed, 16 Sep 2020 15:35:31 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.heine.tech (mail.heine.tech [195.201.24.99]) by hemlock.osuosl.org (Postfix) with ESMTPS id A2BEB873D7 for ; Wed, 16 Sep 2020 15:35:31 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id EB35918150D; Wed, 16 Sep 2020 17:35:28 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heine.tech; s=dkim; t=1600270530; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=XDLTPAvJPYXxtDyX2CvnTXDsxR1VVyXKfoxOfm8E0t8=; b=jq3HMogkt24tVI99xXclbzwEBi6BBL+7ja8T2qvGen06n+LJwmgXzUaWQoDvjH0QQyz/kV 4YYy/JcdaJHSQveuIK5+2UuOKmvelwU3ycYivve4XW9vX5cLY5zNsRjmwdXk3NEaWCzz3D c/3b5kpAcx0rPxWSgcPbycZ/7Fkq7zc= To: buildroot@buildroot.org Date: Wed, 16 Sep 2020 17:35:05 +0200 Message-Id: <20200916153510.476-3-buildroot@heine.tech> In-Reply-To: <20200916153510.476-1-buildroot@heine.tech> References: <20200916153340.345-1-buildroot@heine.tech> <20200916153510.476-1-buildroot@heine.tech> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 Subject: [Buildroot] [PATCH v3 3/8] package/dhcpcd: use /run for PIDFile X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Michael Nosthoff via buildroot Reply-To: Michael Nosthoff Cc: John Stile , Michael Nosthoff Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Fixes: PIDFile= references a path below legacy directory /var/run/, updating /var/run/dhcpcd.pid → /run/dhcpcd.pid; please update the unit file accordingly. Signed-off-by: Michael Nosthoff --- package/dhcpcd/dhcpcd.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/dhcpcd/dhcpcd.service b/package/dhcpcd/dhcpcd.service index 0552b5c73a..e648092c9b 100644 --- a/package/dhcpcd/dhcpcd.service +++ b/package/dhcpcd/dhcpcd.service @@ -5,7 +5,7 @@ After=network.target [Service] Type=forking EnvironmentFile=-/etc/default/dhcpcd -PIDFile=/var/run/dhcpcd.pid +PIDFile=/run/dhcpcd.pid ExecStart=/sbin/dhcpcd $DAEMON_ARGS Restart=always From patchwork Wed Sep 16 15:35:06 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Michael Nosthoff X-Patchwork-Id: 1365412 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.137; helo=fraxinus.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=busybox.net Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=heine.tech header.i=@heine.tech header.a=rsa-sha256 header.s=dkim header.b=iiTcuq1c; dkim-atps=neutral Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4Bs41q1qKmz9sTv for ; Thu, 17 Sep 2020 01:35:58 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id B2EAB868B4; Wed, 16 Sep 2020 15:35:56 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zvyBs9iZ9E1B; Wed, 16 Sep 2020 15:35:56 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 406E3869F5; Wed, 16 Sep 2020 15:35:56 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 766021BF977 for ; Wed, 16 Sep 2020 15:35:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 6AD602046F for ; Wed, 16 Sep 2020 15:35:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zVqQ5gGUMHFn for ; Wed, 16 Sep 2020 15:35:34 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.heine.tech (mail.heine.tech [195.201.24.99]) by silver.osuosl.org (Postfix) with ESMTPS id 042C220354 for ; Wed, 16 Sep 2020 15:35:33 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id D2DD218150E; Wed, 16 Sep 2020 17:35:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heine.tech; s=dkim; t=1600270532; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=Ih8CoAWatmSvVXlRT0JL78SL/oJTT57EaM/lwdRpyzs=; b=iiTcuq1cn/nNWA5dTEqO8Jvtgor0isKqkjqij+pMq5GC/WxsdUf+Sf/0ioRdxszHxhx6hQ tCDFJs6xzCvd8IEzqATxugKCX1BlTkPES41rnexPSY2bs8aSTJhw4I7z9x2MDydswjNn4t 8cs68/uFlJDATX2U7ING8X81HqijFeU= To: buildroot@buildroot.org Date: Wed, 16 Sep 2020 17:35:06 +0200 Message-Id: <20200916153510.476-4-buildroot@heine.tech> In-Reply-To: <20200916153510.476-1-buildroot@heine.tech> References: <20200916153340.345-1-buildroot@heine.tech> <20200916153510.476-1-buildroot@heine.tech> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 Subject: [Buildroot] [PATCH v3 4/8] package/htpdate: use /run for PIDFile X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Michael Nosthoff via buildroot Reply-To: Michael Nosthoff Cc: Michael Nosthoff , Angelo Compagnucci Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" - rename pidfile from htpdate to htpdate.pid Fixes: PIDFile= references a path below legacy directory /var/run/, updating /var/run/htpdate.pid → /run/htpdate.pid; please update the unit file accordingly. Signed-off-by: Michael Nosthoff --- package/htpdate/htpdate.service | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/htpdate/htpdate.service b/package/htpdate/htpdate.service index 0c77550813..b7f1371b08 100644 --- a/package/htpdate/htpdate.service +++ b/package/htpdate/htpdate.service @@ -4,10 +4,10 @@ After=network.target [Service] Type=forking -PIDFile=/var/run/htpdate +PIDFile=/run/htpdate.pid Environment=HTPDATE_ARGS="-a -s -t https://www.google.com" EnvironmentFile=-/etc/default/htpdate -ExecStart=/usr/bin/htpdate -D -i /var/run/htpdate $HTPDATE_ARGS +ExecStart=/usr/bin/htpdate -D -i /run/htpdate.pid $HTPDATE_ARGS [Install] WantedBy=multi-user.target From patchwork Wed Sep 16 15:35:07 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Michael Nosthoff X-Patchwork-Id: 1365416 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.133; helo=hemlock.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=busybox.net Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=heine.tech header.i=@heine.tech header.a=rsa-sha256 header.s=dkim header.b=pHKsQUO+; dkim-atps=neutral Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4Bs41r4xWwz9sTs for ; Thu, 17 Sep 2020 01:36:00 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id CA8A8873D7; Wed, 16 Sep 2020 15:35:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aShX9+VvM9lM; Wed, 16 Sep 2020 15:35:57 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 49E22873D8; Wed, 16 Sep 2020 15:35:57 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 3E0D11BF977 for ; Wed, 16 Sep 2020 15:35:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 37CAD87138 for ; Wed, 16 Sep 2020 15:35:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VituvNEMfWqn for ; Wed, 16 Sep 2020 15:35:36 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.heine.tech (mail.heine.tech [195.201.24.99]) by whitealder.osuosl.org (Postfix) with ESMTPS id 073EC86F80 for ; Wed, 16 Sep 2020 15:35:36 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 250EA18150F; Wed, 16 Sep 2020 17:35:33 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heine.tech; s=dkim; t=1600270534; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=MdHasd1MgP35gCkbkaTiHK//tgWRhT/XbheU7stVgpI=; b=pHKsQUO+kwSNAyuzhZ7aj0lvkgvMewSsxR7DxEP3Cl7zOTD+/ljlUUQXAiiTECcw3qDWZo MmcKZIOmerKaNgYfSHIR+yw/lGTRI2jC+NggTsqV0TgHgrjUdyttD9C9xcjtNBwYGlCZ05 3l64C2Yqw50Gw3WZ6htiv4whcgpgklo= To: buildroot@buildroot.org Date: Wed, 16 Sep 2020 17:35:07 +0200 Message-Id: <20200916153510.476-5-buildroot@heine.tech> In-Reply-To: <20200916153510.476-1-buildroot@heine.tech> References: <20200916153340.345-1-buildroot@heine.tech> <20200916153510.476-1-buildroot@heine.tech> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 Subject: [Buildroot] [PATCH v3 5/8] package/minidlna: use /run for PIDFile X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Michael Nosthoff via buildroot Reply-To: Michael Nosthoff Cc: Bernd Kuhls , Michael Nosthoff , Simon Dawson Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Fixes: PIDFile= references a path below legacy directory /var/run/, updating /var/run/minidlna.pid → /run/minidlna.pid; please update the unit file accordingly. Signed-off-by: Michael Nosthoff --- package/minidlna/minidlnad.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/minidlna/minidlnad.service b/package/minidlna/minidlnad.service index f69476b303..4e968d3858 100644 --- a/package/minidlna/minidlnad.service +++ b/package/minidlna/minidlnad.service @@ -5,7 +5,7 @@ After=network.target [Service] Type=forking ExecStart=/usr/sbin/minidlnad -PIDFile=/var/run/minidlna/minidlna.pid +PIDFile=/run/minidlna/minidlna.pid [Install] WantedBy=multi-user.target From patchwork Wed Sep 16 15:35:08 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Michael Nosthoff X-Patchwork-Id: 1365417 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.136; helo=silver.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=busybox.net Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=heine.tech header.i=@heine.tech header.a=rsa-sha256 header.s=dkim header.b=aLJQogS4; dkim-atps=neutral Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4Bs41v5hhMz9sSC for ; Thu, 17 Sep 2020 01:36:03 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 2907120354; Wed, 16 Sep 2020 15:36:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JmFA9tHAYpg3; Wed, 16 Sep 2020 15:35:59 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id C0F3B2046F; Wed, 16 Sep 2020 15:35:58 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 57CDD1BF977 for ; Wed, 16 Sep 2020 15:35:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 54976873D7 for ; Wed, 16 Sep 2020 15:35:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4Io92Z3Fx-rF for ; Wed, 16 Sep 2020 15:35:40 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.heine.tech (mail.heine.tech [195.201.24.99]) by hemlock.osuosl.org (Postfix) with ESMTPS id BA3A1873D5 for ; Wed, 16 Sep 2020 15:35:40 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 1631D18150E; Wed, 16 Sep 2020 17:35:35 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heine.tech; s=dkim; t=1600270536; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=9+D5on+mJZ0L5kk8vLHWI+MN+qNCjk2IFsOaAjvwth0=; b=aLJQogS4OOLUk4feS4YkDDYHMnYRTD/a+wpHNjBBIKUeMurcSUn99reR8EKg34Qqz/XK2d l93dnKA1MGGiHwjV5yr6ZYzuPf0VVFS9weRJxwMfCG0wjwjEBnXhsBxG/uJG/26zLxQhu4 g3ISawNujHR4ZnB8mW2F7ZRsVEj/27g= To: buildroot@buildroot.org Date: Wed, 16 Sep 2020 17:35:08 +0200 Message-Id: <20200916153510.476-6-buildroot@heine.tech> In-Reply-To: <20200916153510.476-1-buildroot@heine.tech> References: <20200916153340.345-1-buildroot@heine.tech> <20200916153510.476-1-buildroot@heine.tech> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 Subject: [Buildroot] [PATCH v3 6/8] package/nss-pam-ldapd: use /run for PIDFile X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Michael Nosthoff via buildroot Reply-To: Michael Nosthoff Cc: Michael Nosthoff , Doug Kehn Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Fixes: PIDFile= references a path below legacy directory /var/run/, updating /var/run/nslcd.pid → /run/nslcd.pid; please update the unit file accordingly. Signed-off-by: Michael Nosthoff --- package/nss-pam-ldapd/nslcd.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/nss-pam-ldapd/nslcd.service b/package/nss-pam-ldapd/nslcd.service index 6c0d71b241..5a000a8e4c 100644 --- a/package/nss-pam-ldapd/nslcd.service +++ b/package/nss-pam-ldapd/nslcd.service @@ -4,7 +4,7 @@ After=syslog.target network.target [Service] Type=forking -PIDFile=/var/run/nslcd/nslcd.pid +PIDFile=/run/nslcd/nslcd.pid ExecStart=/usr/sbin/nslcd [Install] From patchwork Wed Sep 16 15:35:09 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Michael Nosthoff X-Patchwork-Id: 1365418 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.133; helo=hemlock.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=busybox.net Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=heine.tech header.i=@heine.tech header.a=rsa-sha256 header.s=dkim header.b=GPtXs73n; dkim-atps=neutral Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4Bs41w1Jb1z9sTQ for ; Thu, 17 Sep 2020 01:36:04 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id AC99D873DE; Wed, 16 Sep 2020 15:36:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id o0ydstcp3oGd; Wed, 16 Sep 2020 15:36:01 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 29619873E1; Wed, 16 Sep 2020 15:36:01 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 94F751BF977 for ; Wed, 16 Sep 2020 15:35:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 8A0CF2046F for ; Wed, 16 Sep 2020 15:35:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4H6u6Y1YVkmZ for ; Wed, 16 Sep 2020 15:35:43 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.heine.tech (mail.heine.tech [195.201.24.99]) by silver.osuosl.org (Postfix) with ESMTPS id C21D820354 for ; Wed, 16 Sep 2020 15:35:42 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 07A0A18150D; Wed, 16 Sep 2020 17:35:40 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heine.tech; s=dkim; t=1600270541; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=5QUgCE2ZHjb1zSEDXAwlXoOEYeVIRhDhoBf24RXmK/Y=; b=GPtXs73nfuvi+pq55yehntf0bnsn3H+a89HwAXY7O2R/jhSHmPaYr+FsnigfY8hqzGIp2q BTBPU0etel0UYWSBTz5YlY5iAMCippQFiJvbk/uzRkRr51Xp+fDnoLTPlHEbb0TTYVWrN2 4q7+bo1QN1oaK8PRzIFGSe6Vb67qQmU= To: buildroot@buildroot.org Date: Wed, 16 Sep 2020 17:35:09 +0200 Message-Id: <20200916153510.476-7-buildroot@heine.tech> In-Reply-To: <20200916153510.476-1-buildroot@heine.tech> References: <20200916153340.345-1-buildroot@heine.tech> <20200916153510.476-1-buildroot@heine.tech> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 Subject: [Buildroot] [PATCH v3 7/8] package/openvmtools: use /run for PIDFile X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Michael Nosthoff via buildroot Reply-To: Michael Nosthoff Cc: Michael Nosthoff , Karoly Kasza Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Fixes: PIDFile= references a path below legacy directory /var/run/, updating /var/run/vmtoolsd.pid → /run/vmtoolsd.pid; please update the unit file accordingly. Signed-off-by: Michael Nosthoff --- package/openvmtools/vmtoolsd.service | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/openvmtools/vmtoolsd.service b/package/openvmtools/vmtoolsd.service index cb97357ec2..1d2a3566cf 100644 --- a/package/openvmtools/vmtoolsd.service +++ b/package/openvmtools/vmtoolsd.service @@ -5,8 +5,8 @@ ConditionVirtualization=vmware [Service] Type=forking -PIDFile=/var/run/vmtoolsd.pid -ExecStart=/usr/bin/vmtoolsd -b /var/run/vmtoolsd.pid +PIDFile=/run/vmtoolsd.pid +ExecStart=/usr/bin/vmtoolsd -b /run/vmtoolsd.pid Restart=on-failure KillMode=process KillSignal=SIGKILL From patchwork Wed Sep 16 15:35:10 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Nosthoff X-Patchwork-Id: 1365419 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.137; helo=fraxinus.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=busybox.net Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=heine.tech header.i=@heine.tech header.a=rsa-sha256 header.s=dkim header.b=tAbPcx+c; dkim-atps=neutral Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4Bs41w2lKrz9sTs for ; Thu, 17 Sep 2020 01:36:04 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id ECAC3869F5; Wed, 16 Sep 2020 15:36:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Hn4cHL0gJYYY; Wed, 16 Sep 2020 15:36:02 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 7E3BE86A99; Wed, 16 Sep 2020 15:36:02 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 297811BF977 for ; Wed, 16 Sep 2020 15:35:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 23B0887138 for ; Wed, 16 Sep 2020 15:35:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rQNqLwU9EPf0 for ; Wed, 16 Sep 2020 15:35:44 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.heine.tech (mail.heine.tech [195.201.24.99]) by whitealder.osuosl.org (Postfix) with ESMTPS id A29CD86F80 for ; Wed, 16 Sep 2020 15:35:44 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 00E9618150F; Wed, 16 Sep 2020 17:35:41 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heine.tech; s=dkim; t=1600270543; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding:in-reply-to:references; bh=i5PMv2CB2W8SeEMnATD3ursLhVz263hcrQRcW7L0Mhc=; b=tAbPcx+ce8H+G1J8XIwEsNEsgqyC5Ora58tG42JS2fq101CG68QZVYt2jEbqzqF4sKEiww zqWA8/E6OpYNf5sGrKbuGqbs3t+kd3SHvWLatj6xh/azgqKeG/o6uNCUQ47saSkDqU987S lTqdWr10O8AClayglHTkiyRhMbJDGfI= To: buildroot@buildroot.org Date: Wed, 16 Sep 2020 17:35:10 +0200 Message-Id: <20200916153510.476-8-buildroot@heine.tech> In-Reply-To: <20200916153510.476-1-buildroot@heine.tech> References: <20200916153340.345-1-buildroot@heine.tech> <20200916153510.476-1-buildroot@heine.tech> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 Subject: [Buildroot] [PATCH v3 8/8] package/postgresql: remove PIDFile from .service X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Michael Nosthoff via buildroot Reply-To: Michael Nosthoff Cc: Michael Nosthoff , Peter Seiderer Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" commit eada187e77022f0d changed the service to Type=notify. notify units don't need a PIDFile so this can be removed. Signed-off-by: Michael Nosthoff --- package/postgresql/postgresql.service | 1 - 1 file changed, 1 deletion(-) diff --git a/package/postgresql/postgresql.service b/package/postgresql/postgresql.service index 53e6f84f00..539eea8964 100644 --- a/package/postgresql/postgresql.service +++ b/package/postgresql/postgresql.service @@ -15,7 +15,6 @@ Group=postgres StandardOutput=syslog StandardError=syslog SyslogIdentifier=postgres -PIDFile=/var/lib/pgsql/postmaster.pid ExecStartPre=/bin/sh -c "if [ ! -f /var/lib/pgsql/PG_VERSION ]; then /usr/bin/pg_ctl initdb -D /var/lib/pgsql; fi" ExecStart=/usr/bin/postgres -D /var/lib/pgsql