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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CBB41138359 for ; Mon, 6 Jul 2020 05:10:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F10C6E087B; Mon, 6 Jul 2020 05:10:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D8F81E087B for ; Mon, 6 Jul 2020 05:10:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6777134F086 for ; Mon, 6 Jul 2020 05:10:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 748EE9C for ; Mon, 6 Jul 2020 05:10:34 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1594012224.77b3e54d957ff7d31845f84b835adea0995c8fd5.robbat2@gentoo> Subject: [gentoo-commits] proj/elections:master commit in: / X-VCS-Repository: proj/elections X-VCS-Files: README X-VCS-Directories: / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 77b3e54d957ff7d31845f84b835adea0995c8fd5 X-VCS-Branch: master Date: Mon, 6 Jul 2020 05:10:34 +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: f8314e5d-e6ea-4b6a-abf3-9ddd6dccd795 X-Archives-Hash: 07e3715d867a9a29b4561989726ff7dd commit: 77b3e54d957ff7d31845f84b835adea0995c8fd5 Author: Robin H. Johnson gentoo org> AuthorDate: Mon Jul 6 05:10:24 2020 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Mon Jul 6 05:10:24 2020 +0000 URL: https://gitweb.gentoo.org/proj/elections.git/commit/?id=77b3e54d README: improve countify instructions Signed-off-by: Robin H. Johnson gentoo.org> README | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/README b/README index 45490f5..0d3c8e6 100644 --- a/README +++ b/README @@ -80,14 +80,27 @@ status files into the home directories of election officials: `voter-turnout-${e 4. Close of election: --------------------- This is where the infra contact is absolutely required. -The infra contact must run `countify --collect` as root, which will write -the master ballot & confirmation stub file to all officials. +The infra contact must run `countify --collect ${election_name}` as root, which will write +the master ballot & confirmation stub file to all officials: +``` +$ sudo su +# cd /etc/elections +# ./countify --collect ${election_name} +# find /home/${official}/results-${election_name}/ +/home/${official}/results-${election_name}/master-${election_name} +/home/${official}/results-${election_name}/confs-${election_name} +``` 5. Verify results: ------------------ Each election official should verify the results to collectively certify the results. This requires `countify --rank` to transform the master ballot into results. +``` +$ cd /home/${official}/results-${election_name} +$ countify --rank +(election output) +``` 6. Email conf stubs: --------------------