source: fedd/dump_abac_authorizer.py @ f1f9aec

Last change on this file since f1f9aec was 2e46f35, checked in by mikeryan <mikeryan@…>, 13 years ago

switch to /usr/bin/env python to run python

  • Property mode set to 100755
File size: 266 bytes
Line 
1#!/usr/bin/env 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.