From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from hamza.pair.com (hamza.pair.com [209.68.5.143]) by sourceware.org (Postfix) with ESMTPS id 00BAF3858403 for ; Tue, 18 Oct 2022 14:15:23 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 00BAF3858403 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=pfeifer.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=pfeifer.com Received: from hamza.pair.com (localhost [127.0.0.1]) by hamza.pair.com (Postfix) with ESMTP id AE27B33E1C; Tue, 18 Oct 2022 10:15:23 -0400 (EDT) Received: from naga.localdomain (194-166-101-219.adsl.highway.telekom.at [194.166.101.219]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by hamza.pair.com (Postfix) with ESMTPSA id 2956333EA9; Tue, 18 Oct 2022 10:15:23 -0400 (EDT) Date: Tue, 18 Oct 2022 16:15:20 +0200 (CEST) From: Gerald Pfeifer To: overseers@gcc.gnu.org cc: =?ISO-8859-15?Q?Martin_Li=A8ka?= Subject: chown -R gccadmin /www/gcc/htdocs-preformatted Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Scanned-By: mailmunge 3.09 on 209.68.5.143 X-Spam-Status: No, score=-3.5 required=5.0 tests=BAYES_00,KAM_DMARC_STATUS,KAM_SHORT,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Martin reported that his latest change to https://gcc.gnu.org/codingconventions.html did not make it to the actual gcc.gnu.org site after pushing to git. I dug into it and found that /www/gcc/htdocs-preformatted is behind git head. `git pull` gets stuck (even as user gccadmin). $ git checkout Your branch is behind 'origin/master' by 3 commits, and can be fast-forwarded. (use "git pull" to update your local branch) $ git pull Updating 68c7552f..415fcf49 error: unable to unlink old 'htdocs/onlinedocs/8.4.0/index.html': Permission denied Ask: Can you please run chown -R gccadmin /www/gcc/htdocs-preformatted as root? And then see whether cd /www/gcc/htdocs-preformatted ; git pull (as user gccadmin) succeeds? Thank you, Gerald Q: Why is this happening only now, with this specific update? Why did Martin and others not run into any problems the last years? A: My commit 91315916d177e42c5888c5d30491ab6d6041b1a4 four days ago touched every single *.html file in the tree, which is a first in four years, and a first since wwwdocs moved to git three years ago. Interestingly newer directories under onlinedocs/ don't run into this since they are drwxrwsr-x. instead of drwxr-sr-x. like 8.4.0 is.