removed another bunch of references to geni
[sfa.git] / sfa / plc / sfa-nuke-plc.py
1 #!/usr/bin/python
2 ##
3 # Delete all the database records for SFA. This tool is used to clean out SFA
4 # records during testing.
5 #
6 # Authority info (maintained by the hierarchy module in a subdirectory tree)
7 # is not purged by this tool and may be deleted by a command like 'rm'.
8 ##
9
10 import getopt
11 import sys
12
13 from sfa.trust.hierarchy import *
14 from sfa.util.record import *
15 from sfa.util.table import SfaTable
16 from sfa.util.config import Config
17
18 def process_options():
19
20    (options, args) = getopt.getopt(sys.argv[1:], '', [])
21    for opt in options:
22        name = opt[0]
23        val = opt[1]
24
25 def main():
26     process_options()
27
28     print "Purging SFA records from database"
29     SfaTable.sfa_records_purge(Config().get_plc_dbinfo())
30
31 if __name__ == "__main__":
32     main()