summaryrefslogtreecommitdiffstats
path: root/moon-abe/cpabe-0.11/cpabe-policyList.py
blob: 3b33c65302ed654c2de7d2ebdc8ee67901a3c032 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/python
import os, sys
from subprocess import call

c_prog = "cpabe-policyList"
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")