diff options
Diffstat (limited to 'README')
-rw-r--r-- | README | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -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: -------------------- |