[openssh-commits] [openssh] 01/02: Remove extended ACLs from working dirs.
git+noreply at mindrot.org
git+noreply at mindrot.org
Sat Feb 25 14:46:52 AEDT 2023
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
commit 52b75db61030a6c8baf66b73644380cf3f58e26a
Author: Darren Tucker <dtucker at dtucker.net>
Date: Sat Feb 25 14:43:28 2023 +1100
Remove extended ACLs from working dirs.
This should allow umask to work as expected and prevent tests from
failing due to excessive permissions on private keys.
---
.github/setup_ci.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/setup_ci.sh b/.github/setup_ci.sh
index e4480e61..691c70dd 100755
--- a/.github/setup_ci.sh
+++ b/.github/setup_ci.sh
@@ -7,10 +7,10 @@ PACKAGES=""
case "`./config.guess`" in
*cygwin)
PACKAGER=setup
- echo Setting CYGWIN sustem environment variable.
+ echo Setting CYGWIN system environment variable.
setx CYGWIN "binmode"
- chmod -R go-rw /cygdrive/d/a
- umask 077
+ echo Removing extended ACLs so umask works as expected.
+ setfacl -b . regress
PACKAGES="$PACKAGES,autoconf,automake,cygwin-devel,gcc-core"
PACKAGES="$PACKAGES,make,openssl-devel,zlib-devel"
;;
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list