File: expunge.py

package info (click to toggle)
planet-venus 0~bzr95-2%2Blenny1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 2,616 kB
  • ctags: 1,981
  • sloc: python: 14,776; xml: 821; makefile: 36; sed: 3
file content (17 lines) | stat: -rw-r--r-- 385 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python
"""
Main program to run just the expunge portion of planet
"""

import os.path
import sys
from planet import expunge, config

if __name__ == '__main__':

    if len(sys.argv) == 2 and os.path.isfile(sys.argv[1]):
        config.load(sys.argv[1])
        expunge.expungeCache()
    else:
        print "Usage:"
        print "  python %s config.ini" % sys.argv[0]