X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=shania;h=83b748ae104fb981ebc29fc7adbc90ed3cec5dd5;hb=b5e1c7e89ed5f55c8125a6df7580bc92516f726d;hp=9dee4ed7afda834e51158c2b50a9dda509a87853;hpb=9fd9aeeafd9cfdc86c9ceaa6c070f82a45a8e604;p=dak.git diff --git a/shania b/shania index 9dee4ed7..83b748ae 100755 --- a/shania +++ b/shania @@ -2,7 +2,7 @@ # Clean incoming of old unused files # Copyright (C) 2000, 2001 James Troup -# $Id: shania,v 1.4 2001-06-22 23:23:59 troup Exp $ +# $Id: shania,v 1.6 2001-09-27 01:22:51 troup Exp $ # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -26,7 +26,20 @@ import apt_pkg; ################################################################################ -# ``where security is not an option'' +# 23:12| I will not hush! +# 23:12| :> +# 23:12| Where there is injustice in the world, I shall be there! +# 23:13| I shall not be silenced! +# 23:13| The world shall know! +# 23:13| The world *must* know! +# 23:13| oh dear, he's gone back to powerpuff girls... ;-) +# 23:13| yay powerpuff girls!! +# 23:13| buttercup's my favourite, who's yours? +# 23:14| you're backing away from the keyboard right now aren't you? +# 23:14| *AREN'T YOU*?! +# 23:15| I will not be treated like this. +# 23:15| I shall have my revenge. +# 23:15| I SHALL!!! ################################################################################ @@ -36,9 +49,23 @@ del_dir = None; ################################################################################ +def usage (exit_code=0): + print """Usage: shania [OPTIONS] +Clean out incoming directories. + + -d, --days=DAYS remove anything older than DAYS old + -i, --incoming=INCOMING the incoming directory to clean + -n, --no-action don't do anything + -v, --verbose explain what is being done + -h, --help show this help and exit""" + + sys.exit(exit_code) + +################################################################################ + def init (): global delete_date, del_dir; - + delete_date = int(time.time())-(int(Options["Days"])*84600); # Ensure a directory exists to remove files to @@ -66,7 +93,7 @@ def remove (file): utils.move(file, dest_filename); else: utils.warn("skipping '%s', permission denied." % (os.path.basename(file))); - + # Removes any old files. # [Used for Incoming/REJECT] # @@ -90,7 +117,7 @@ def flush_old (): def flush_orphans (): all_files = {}; changes_files = []; - + # Build up the list of all files in the directory for i in os.listdir('.'): if os.path.isfile(i): @@ -126,7 +153,7 @@ def flush_orphans (): if Options["Verbose"]: print "Skipping, has parents, '%s'." % (key); del all_files[key]; - + # Anthing left at this stage is not referenced by a .changes (or # a .dsc) and should be deleted if old enough. for file in all_files.keys(): @@ -140,26 +167,31 @@ def flush_orphans (): else: if Options["Verbose"]: print "Skipping, too new, '%s'." % (os.path.basename(file)); - + +################################################################################ + def main (): global Cnf, Options; - + apt_pkg.init(); - + Cnf = apt_pkg.newConfiguration(); apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file()); - Arguments = [('D',"debug","Shania::Options::Debug", "IntVal"), - ('h',"help","Shania::Options::Help"), - ('V',"version","Shania::Options::Version"), + Arguments = [('h',"help","Shania::Options::Help"), ('d',"days","Shania::Options::Days", "IntVal"), ('i',"incoming","Shania::Options::Incoming", "HasArg"), ('n',"no-action","Shania::Options::No-Action"), ('v',"verbose","Shania::Options::Verbose")]; + for i in ["help", "days", "incoming", "no-action", "verbose" ]: + Cnf["Shania::Options::%s" % (i)] = ""; apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv); Options = Cnf.SubTree("Shania::Options") + if Options["Help"]: + usage(); + init (); if Options["Verbose"]: