-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpverify.sh
executable file
·26 lines (19 loc) · 1.07 KB
/
pverify.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh
# This file is part of election-verifier.
# Copyright (C) 2015-2016 Sequent Tech Inc <legal@sequentech.io>
# election-verifier is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License.
# election-verifier is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public License
# along with election-verifier. If not, see <http://www.gnu.org/licenses/>.
if [ "$#" -ne 2 ] || ! [ -d "$2" ]; then
echo "Usage: $0 <random_source> <tally_dir>" >&2
exit 1
fi
command -v java >/dev/null 2>&1 || { echo >&2 "* I require java but it's not installed. Aborting."; exit 1; }
java -Djava.security.egd=file:/dev/./urandom -classpath election-verifier_2.10-master.jar org.sequent.sequent.Verifier $1 $2
exit $?