aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2013-10-08 21:22:43 +0000
committerFlorian Dold <florian.dold@gmail.com>2013-10-08 21:22:43 +0000
commit5b4933f12a3eadedf84e6adf00e1c1ac15924f6d (patch)
tree5824cf1236dbdbca515cc7d1f5f7bce1ee3eba6b /bin
parenta8c1c65a00dce604ff829dfe10568cd06c8f8bda (diff)
downloadgnunet-java-5b4933f12a3eadedf84e6adf00e1c1ac15924f6d.tar.gz
gnunet-java-5b4933f12a3eadedf84e6adf00e1c1ac15924f6d.zip
- identity service implemented
- started with arm implementation - removed locking from scheduler - separated TaskConfiguration and TaskIdentifier - implemented proper message stream tokenizer - work on voting
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gnunet-ballot12
-rwxr-xr-xbin/gnunet-daemon-ballot-ca12
-rwxr-xr-xbin/gnunet-daemon-ballot-tally12
3 files changed, 36 insertions, 0 deletions
diff --git a/bin/gnunet-ballot b/bin/gnunet-ballot
new file mode 100755
index 0000000..e76c423
--- /dev/null
+++ b/bin/gnunet-ballot
@@ -0,0 +1,12 @@
1#!/bin/sh
2
3if [ "%GNJ_INSTALLED" = "true" ];
4then
5 export CLASSPATH="%INSTALL_PATH/share/java/*"
6else
7 DIR=`dirname $0`
8 # if we are in the development environment use class files directly instead of jar
9 export CLASSPATH="$DIR/../build-gradle/classes/main/:$DIR/../build-gradle/resources/main/:$DIR/../lib/*"
10fi
11
12java -ea org.gnunet.voting.BallotTool "$@"
diff --git a/bin/gnunet-daemon-ballot-ca b/bin/gnunet-daemon-ballot-ca
new file mode 100755
index 0000000..b85a67f
--- /dev/null
+++ b/bin/gnunet-daemon-ballot-ca
@@ -0,0 +1,12 @@
1#!/bin/sh
2
3if [ "%GNJ_INSTALLED" = "true" ];
4then
5 export CLASSPATH="%INSTALL_PATH/share/java/*"
6else
7 DIR=`dirname $0`
8 # if we are in the development environment use class files directly instead of jar
9 export CLASSPATH="$DIR/../build-gradle/classes/main/:$DIR/../build-gradle/resources/main/:$DIR/../lib/*"
10fi
11
12java -ea org.gnunet.voting.CertificateAuthorityDaemon "$@"
diff --git a/bin/gnunet-daemon-ballot-tally b/bin/gnunet-daemon-ballot-tally
new file mode 100755
index 0000000..b24b5eb
--- /dev/null
+++ b/bin/gnunet-daemon-ballot-tally
@@ -0,0 +1,12 @@
1#!/bin/sh
2
3if [ "%GNJ_INSTALLED" = "true" ];
4then
5 export CLASSPATH="%INSTALL_PATH/share/java/*"
6else
7 DIR=`dirname $0`
8 # if we are in the development environment use class files directly instead of jar
9 export CLASSPATH="$DIR/../build-gradle/classes/main/:$DIR/../build-gradle/resources/main/:$DIR/../lib/*"
10fi
11
12java -ea org.gnunet.voting.TallyAuthorityDaemon "$@"