source: fedd/dump_abac_authorizer.py @ 547aa3b

axis_examplecompt_changesinfo-ops
Last change on this file since 547aa3b was 547aa3b, checked in by Ted Faber <faber@…>, 13 years ago

various fixes to abac tools to work with the new library

  • Property mode set to 100755
File size: 268 bytes
Line 
1#!/usr/local/bin/python
2
3import sys
4from federation.authorizer import abac_authorizer
5import ABAC
6
7if len(sys.argv) == 2 and sys.argv[1].strip() != '--help':
8    a = abac_authorizer(load=sys.argv[1])
9    print a
10else:
11    sys.exit("Usage: %s directory" % sys.argv[0])
Note: See TracBrowser for help on using the repository browser.