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 C958B158094 for ; Tue, 26 Jul 2022 17:36:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9746E0ED3; Tue, 26 Jul 2022 17:36:47 +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 BFB18E0ED3 for ; Tue, 26 Jul 2022 17:36:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 EBE6F340DD7 for ; Tue, 26 Jul 2022 17:36:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C6FC525 for ; Tue, 26 Jul 2022 17:36:45 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1658857000.978462b1245d2bb8575622e00aeeeed337b83d88.blueness@gentoo> Subject: [gentoo-commits] proj/grs:desktop-amd64-musl-hardened commit in: core/var/log/samba/, scripts/ X-VCS-Repository: proj/grs X-VCS-Files: core/var/log/samba/.keep scripts/clean.sh X-VCS-Directories: scripts/ core/var/log/samba/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 978462b1245d2bb8575622e00aeeeed337b83d88 X-VCS-Branch: desktop-amd64-musl-hardened Date: Tue, 26 Jul 2022 17:36:45 +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: 7ae74b12-3835-4a99-887d-26612bf65fbe X-Archives-Hash: 1cf10411f82227c708596bb5f18bd233 commit: 978462b1245d2bb8575622e00aeeeed337b83d88 Author: Anthony G. Basile gentoo org> AuthorDate: Tue Jul 26 17:36:04 2022 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Tue Jul 26 17:36:40 2022 +0000 URL: https://gitweb.gentoo.org/proj/grs.git/commit/?id=978462b1 samba: create /var/log/samba for samba-4.15.7 Signed-off-by: Anthony G. Basile gentoo.org> core/var/log/samba/.keep | 0 scripts/clean.sh | 6 ++++++ 2 files changed, 6 insertions(+) diff --git a/core/var/log/samba/.keep b/core/var/log/samba/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/scripts/clean.sh b/scripts/clean.sh index 2022316..8b757b5 100644 --- a/scripts/clean.sh +++ b/scripts/clean.sh @@ -4,3 +4,9 @@ for d in /tmp /var/tmp /var/log; do find ${d} -mindepth 1 -exec rm -rf {} + done rm -rf /etc/resolv.conf + +# BUG: samba-4.15.7 can't create /var/log/samba +# on startup, so we will. We should remove this +# when samba is fixed, although it shouldn't cause +# a problem. +mkdir -p /var/log/samba