summaryrefslogtreecommitdiffstats
path: root/moon-abe/cpabe-0.11/cpabe-enc.py
diff options
context:
space:
mode:
Diffstat (limited to 'moon-abe/cpabe-0.11/cpabe-enc.py')
-rw-r--r--moon-abe/cpabe-0.11/cpabe-enc.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/moon-abe/cpabe-0.11/cpabe-enc.py b/moon-abe/cpabe-0.11/cpabe-enc.py
deleted file mode 100644
index cff9a6f6..00000000
--- a/moon-abe/cpabe-0.11/cpabe-enc.py
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/python
-import os, sys
-from subprocess import call
-
-c_prog = "cpabe-enc"
-c_file = "/usr/local/bin/" + c_prog
-
-if(os.path.isfile(c_file)):
- args = [c_prog] + sys.argv[1::]
- call(args)
-
-elif(os.path.isfile("./" + c_prog)):
- print "Warning: missing file %s using binary in local repository" % c_file
- args = ["./" + c_prog] + sys.argv[1::]
- call(args)
-
-else:
- sys.exit(c_prog + " was not found. Be sure that the C library cpabe is installed before running this program")