From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 3EEC01F610 for ; Mon, 6 Apr 2020 09:56:22 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 2/3] examples/grok-pull.post_update_hook: capture infourl Date: Mon, 6 Apr 2020 09:56:20 +0000 Message-Id: <20200406095621.5656-3-e@yhbt.net> In-Reply-To: <20200406095621.5656-1-e@yhbt.net> References: <20200406095621.5656-1-e@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: The value of infourl parameters are shared in the config, so include them in the mirror. --- examples/grok-pull.post_update_hook.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/examples/grok-pull.post_update_hook.sh b/examples/grok-pull.post_update_hook.sh index e04eb2c5..18200ba2 100755 --- a/examples/grok-pull.post_update_hook.sh +++ b/examples/grok-pull.post_update_hook.sh @@ -54,6 +54,7 @@ case $cfg_dir in config_url="$remote_inbox_url"/_/text/config/raw remote_config="$inbox_dir"/remote.config.$$ + infourls= trap 'rm -f "$remote_config"' EXIT if curl --compressed -sSf -v "$config_url" >"$remote_config" then @@ -70,6 +71,8 @@ case $cfg_dir in esac newsgroups=$(git config -f "$remote_config" -l | \ sed -ne 's/^publicinbox\..\+\.newsgroup=//p') + infourls=$(git config -f "$remote_config" -l | \ + sed -ne 's/^publicinbox\..\+.infourl=//p') else newsgroups= addresses="$inbox_name@$$.$(hostname).example.com" @@ -93,6 +96,11 @@ case $cfg_dir in # only one newsgroup per inbox break done + for url in $infourls + do + git config -f "$PI_CONFIG" \ + "publicinbox.$inbox_name.infourl" "$url" + done curl -sSfv "remote_inbox_url"/description >"$inbox_dir"/description echo "I: $inbox_name at $inbox_dir ($addresses) $local_url" ;;