From fd57e030f85e3b7b6944613e383bfa739be7dbfc Mon Sep 17 00:00:00 2001 From: nervuri Date: Sat, 23 Sep 2023 14:00:51 +0000 Subject: [PATCH] main.sh: comment out calls to per-client trust store gen scripts Also, update script duration estimates in README. --- README.md | 2 +- main.sh | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c47bbf0..bfc62dd 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ To install them in Debian, run: `sudo apt install openssl idn torsocks` and `pip ## Usage -`./main.sh` will run all scripts. For the [trust stores repo](https://tildegit.org/nervuri/trust-stores), I use `time ./main.sh >log-stdout 2>log-stderr`. For 893 hosts, the command takes around 80 minutes to complete with Tor verification and 45 minutes without. +`./main.sh` will run all scripts except for client-specific trust store generators. For the [trust stores repo](https://tildegit.org/nervuri/trust-stores), I use `time ./main.sh >log-stdout 2>log-stderr`. For 2592 hosts, the command takes around 2 hours and 25 minutes to complete with Tor verification enabled. The trust store generator scripts take about 10 minutes for each client. `get-certs.sh` accepts `tor` as an optional argument, to double-check certificates using the Tor network. This option will automatically be used when you run `./main.sh`. diff --git a/main.sh b/main.sh index d24656c..e167ed2 100755 --- a/main.sh +++ b/main.sh @@ -41,12 +41,12 @@ echo '=== prune old certs ===' echo '=== cert details ===' ./cert-details.sh -echo '=== Agunua ===' -agunua/generate-trust-store.sh -echo '=== Amfora ===' -amfora/generate-trust-store.sh -echo '=== Lagrange ===' -lagrange/generate-trust-store.sh +#echo '=== Agunua ===' +#agunua/generate-trust-store.sh +#echo '=== Amfora ===' +#amfora/generate-trust-store.sh +#echo '=== Lagrange ===' +#lagrange/generate-trust-store.sh echo "End -> $(date --utc)"