]> git.decadent.org.uk Git - dak.git/blob - dak/rm.py
Finally kill m68k
[dak.git] / dak / rm.py
1 #!/usr/bin/env python
2
3 """ General purpose package removal tool for ftpmaster """
4 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2006  James Troup <james@nocrew.org>
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20 ################################################################################
21
22 # o OpenBSD team wants to get changes incorporated into IPF. Darren no
23 #    respond.
24 # o Ask again -> No respond. Darren coder supreme.
25 # o OpenBSD decide to make changes, but only in OpenBSD source
26 #    tree. Darren hears, gets angry! Decides: "LICENSE NO ALLOW!"
27 # o Insert Flame War.
28 # o OpenBSD team decide to switch to different packet filter under BSD
29 #    license. Because Project Goal: Every user should be able to make
30 #    changes to source tree. IPF license bad!!
31 # o Darren try get back: says, NetBSD, FreeBSD allowed! MUAHAHAHAH!!!
32 # o Theo say: no care, pf much better than ipf!
33 # o Darren changes mind: changes license. But OpenBSD will not change
34 #    back to ipf. Darren even much more bitter.
35 # o Darren so bitterbitter. Decides: I'LL GET BACK BY FORKING OPENBSD AND
36 #    RELEASING MY OWN VERSION. HEHEHEHEHE.
37
38 #                        http://slashdot.org/comments.pl?sid=26697&cid=2883271
39
40 ################################################################################
41
42 import commands
43 import os
44 import sys
45 import apt_pkg
46 import apt_inst
47
48 from daklib.config import Config
49 from daklib.dbconn import *
50 from daklib import utils
51 from daklib.dak_exceptions import *
52 from daklib.regexes import re_strip_source_version, re_build_dep_arch
53
54 ################################################################################
55
56 Options = None
57
58 ################################################################################
59
60 def usage (exit_code=0):
61     print """Usage: dak rm [OPTIONS] PACKAGE[...]
62 Remove PACKAGE(s) from suite(s).
63
64   -a, --architecture=ARCH    only act on this architecture
65   -b, --binary               remove binaries only
66   -c, --component=COMPONENT  act on this component
67   -C, --carbon-copy=EMAIL    send a CC of removal message to EMAIL
68   -d, --done=BUG#            send removal message as closure to bug#
69   -h, --help                 show this help and exit
70   -m, --reason=MSG           reason for removal
71   -n, --no-action            don't do anything
72   -p, --partial              don't affect override files
73   -R, --rdep-check           check reverse dependencies
74   -s, --suite=SUITE          act on this suite
75   -S, --source-only          remove source only
76
77 ARCH, BUG#, COMPONENT and SUITE can be comma (or space) separated lists, e.g.
78     --architecture=amd64,i386"""
79
80     sys.exit(exit_code)
81
82 ################################################################################
83
84 # "Hudson: What that's great, that's just fucking great man, now what
85 #  the fuck are we supposed to do? We're in some real pretty shit now
86 #  man...That's it man, game over man, game over, man! Game over! What
87 #  the fuck are we gonna do now? What are we gonna do?"
88
89 def game_over():
90     answer = utils.our_raw_input("Continue (y/N)? ").lower()
91     if answer != "y":
92         print "Aborted."
93         sys.exit(1)
94
95 ################################################################################
96
97 def reverse_depends_check(removals, suites, arches=None):
98     cnf = Config()
99
100     print "Checking reverse dependencies..."
101     components = cnf.ValueList("Suite::%s::Components" % suites[0])
102     dep_problem = 0
103     p2c = {}
104     all_broken = {}
105     if arches:
106         all_arches = set(arches)
107     else:
108         all_arches = set([x.arch_string for x in get_suite_architectures(suites[0])])
109     all_arches -= set(["source", "all"])
110     for architecture in all_arches:
111         deps = {}
112         sources = {}
113         virtual_packages = {}
114         for component in components:
115             filename = "%s/dists/%s/%s/binary-%s/Packages.gz" % (cnf["Dir::Root"], suites[0], component, architecture)
116             # apt_pkg.ParseTagFile needs a real file handle and can't handle a GzipFile instance...
117             (fd, temp_filename) = utils.temp_filename()
118             (result, output) = commands.getstatusoutput("gunzip -c %s > %s" % (filename, temp_filename))
119             if (result != 0):
120                 utils.fubar("Gunzip invocation failed!\n%s\n" % (output), result)
121             packages = utils.open_file(temp_filename)
122             Packages = apt_pkg.ParseTagFile(packages)
123             while Packages.Step():
124                 package = Packages.Section.Find("Package")
125                 source = Packages.Section.Find("Source")
126                 if not source:
127                     source = package
128                 elif ' ' in source:
129                     source = source.split(' ', 1)[0]
130                 sources[package] = source
131                 depends = Packages.Section.Find("Depends")
132                 if depends:
133                     deps[package] = depends
134                 provides = Packages.Section.Find("Provides")
135                 # Maintain a counter for each virtual package.  If a
136                 # Provides: exists, set the counter to 0 and count all
137                 # provides by a package not in the list for removal.
138                 # If the counter stays 0 at the end, we know that only
139                 # the to-be-removed packages provided this virtual
140                 # package.
141                 if provides:
142                     for virtual_pkg in provides.split(","):
143                         virtual_pkg = virtual_pkg.strip()
144                         if virtual_pkg == package: continue
145                         if not virtual_packages.has_key(virtual_pkg):
146                             virtual_packages[virtual_pkg] = 0
147                         if package not in removals:
148                             virtual_packages[virtual_pkg] += 1
149                 p2c[package] = component
150             packages.close()
151             os.unlink(temp_filename)
152
153         # If a virtual package is only provided by the to-be-removed
154         # packages, treat the virtual package as to-be-removed too.
155         for virtual_pkg in virtual_packages.keys():
156             if virtual_packages[virtual_pkg] == 0:
157                 removals.append(virtual_pkg)
158
159         # Check binary dependencies (Depends)
160         for package in deps.keys():
161             if package in removals: continue
162             parsed_dep = []
163             try:
164                 parsed_dep += apt_pkg.ParseDepends(deps[package])
165             except ValueError, e:
166                 print "Error for package %s: %s" % (package, e)
167             for dep in parsed_dep:
168                 # Check for partial breakage.  If a package has a ORed
169                 # dependency, there is only a dependency problem if all
170                 # packages in the ORed depends will be removed.
171                 unsat = 0
172                 for dep_package, _, _ in dep:
173                     if dep_package in removals:
174                         unsat += 1
175                 if unsat == len(dep):
176                     component = p2c[package]
177                     source = sources[package]
178                     if component != "main":
179                         source = "%s/%s" % (source, component)
180                     all_broken.setdefault(source, {}).setdefault(package, set()).add(architecture)
181                     dep_problem = 1
182
183     if all_broken:
184         print "# Broken Depends:"
185         for source, bindict in sorted(all_broken.items()):
186             lines = []
187             for binary, arches in sorted(bindict.items()):
188                 if arches == all_arches:
189                     lines.append(binary)
190                 else:
191                     lines.append('%s [%s]' % (binary, ' '.join(sorted(arches))))
192             print '%s: %s' % (source, lines[0])
193             for line in lines[1:]:
194                 print ' ' * (len(source) + 2) + line
195         print
196
197     # Check source dependencies (Build-Depends and Build-Depends-Indep)
198     all_broken.clear()
199     for component in components:
200         filename = "%s/dists/%s/%s/source/Sources.gz" % (cnf["Dir::Root"], suites[0], component)
201         # apt_pkg.ParseTagFile needs a real file handle and can't handle a GzipFile instance...
202         (fd, temp_filename) = utils.temp_filename()
203         result, output = commands.getstatusoutput("gunzip -c %s > %s" % (filename, temp_filename))
204         if result != 0:
205             sys.stderr.write("Gunzip invocation failed!\n%s\n" % (output))
206             sys.exit(result)
207         sources = utils.open_file(temp_filename, "r")
208         Sources = apt_pkg.ParseTagFile(sources)
209         while Sources.Step():
210             source = Sources.Section.Find("Package")
211             if source in removals: continue
212             parsed_dep = []
213             for build_dep_type in ["Build-Depends", "Build-Depends-Indep"]:
214                 build_dep = Sources.Section.get(build_dep_type)
215                 if build_dep:
216                     # Remove [arch] information since we want to see breakage on all arches
217                     build_dep = re_build_dep_arch.sub("", build_dep)
218                     try:
219                         parsed_dep += apt_pkg.ParseDepends(build_dep)
220                     except ValueError, e:
221                         print "Error for source %s: %s" % (source, e)
222             for dep in parsed_dep:
223                 unsat = 0
224                 for dep_package, _, _ in dep:
225                     if dep_package in removals:
226                         unsat += 1
227                 if unsat == len(dep):
228                     if component != "main":
229                         source = "%s/%s" % (source, component)
230                     all_broken.setdefault(source, set()).add(utils.pp_deps(dep))
231                     dep_problem = 1
232         sources.close()
233         os.unlink(temp_filename)
234
235     if all_broken:
236         print "# Broken Build-Depends:"
237         for source, bdeps in sorted(all_broken.items()):
238             bdeps = sorted(bdeps)
239             print '%s: %s' % (source, bdeps[0])
240             for bdep in bdeps[1:]:
241                 print ' ' * (len(source) + 2) + bdep
242         print
243
244     if dep_problem:
245         print "Dependency problem found."
246         if not Options["No-Action"]:
247             game_over()
248     else:
249         print "No dependency problem found."
250     print
251
252 ################################################################################
253
254 def main ():
255     global Options
256
257     cnf = Config()
258
259     Arguments = [('h',"help","Rm::Options::Help"),
260                  ('a',"architecture","Rm::Options::Architecture", "HasArg"),
261                  ('b',"binary", "Rm::Options::Binary-Only"),
262                  ('c',"component", "Rm::Options::Component", "HasArg"),
263                  ('C',"carbon-copy", "Rm::Options::Carbon-Copy", "HasArg"), # Bugs to Cc
264                  ('d',"done","Rm::Options::Done", "HasArg"), # Bugs fixed
265                  ('R',"rdep-check", "Rm::Options::Rdep-Check"),
266                  ('m',"reason", "Rm::Options::Reason", "HasArg"), # Hysterical raisins; -m is old-dinstall option for rejection reason
267                  ('n',"no-action","Rm::Options::No-Action"),
268                  ('p',"partial", "Rm::Options::Partial"),
269                  ('s',"suite","Rm::Options::Suite", "HasArg"),
270                  ('S',"source-only", "Rm::Options::Source-Only"),
271                  ]
272
273     for i in [ "architecture", "binary-only", "carbon-copy", "component",
274                "done", "help", "no-action", "partial", "rdep-check", "reason",
275                "source-only" ]:
276         if not cnf.has_key("Rm::Options::%s" % (i)):
277             cnf["Rm::Options::%s" % (i)] = ""
278     if not cnf.has_key("Rm::Options::Suite"):
279         cnf["Rm::Options::Suite"] = "unstable"
280
281     arguments = apt_pkg.ParseCommandLine(cnf.Cnf, Arguments, sys.argv)
282     Options = cnf.SubTree("Rm::Options")
283
284     if Options["Help"]:
285         usage()
286
287     session = DBConn().session()
288
289     # Sanity check options
290     if not arguments:
291         utils.fubar("need at least one package name as an argument.")
292     if Options["Architecture"] and Options["Source-Only"]:
293         utils.fubar("can't use -a/--architecture and -S/--source-only options simultaneously.")
294     if Options["Binary-Only"] and Options["Source-Only"]:
295         utils.fubar("can't use -b/--binary-only and -S/--source-only options simultaneously.")
296     if Options.has_key("Carbon-Copy") and not Options.has_key("Done"):
297         utils.fubar("can't use -C/--carbon-copy without also using -d/--done option.")
298     if Options["Architecture"] and not Options["Partial"]:
299         utils.warn("-a/--architecture implies -p/--partial.")
300         Options["Partial"] = "true"
301
302     # Force the admin to tell someone if we're not doing a 'dak
303     # cruft-report' inspired removal (or closing a bug, which counts
304     # as telling someone).
305     if not Options["No-Action"] and not Options["Carbon-Copy"] \
306            and not Options["Done"] and Options["Reason"].find("[auto-cruft]") == -1:
307         utils.fubar("Need a -C/--carbon-copy if not closing a bug and not doing a cruft removal.")
308
309     # Process -C/--carbon-copy
310     #
311     # Accept 3 types of arguments (space separated):
312     #  1) a number - assumed to be a bug number, i.e. nnnnn@bugs.debian.org
313     #  2) the keyword 'package' - cc's $package@packages.debian.org for every argument
314     #  3) contains a '@' - assumed to be an email address, used unmofidied
315     #
316     carbon_copy = []
317     for copy_to in utils.split_args(Options.get("Carbon-Copy")):
318         if copy_to.isdigit():
319             carbon_copy.append(copy_to + "@" + cnf["Dinstall::BugServer"])
320         elif copy_to == 'package':
321             for package in arguments:
322                 carbon_copy.append(package + "@" + cnf["Dinstall::PackagesServer"])
323                 if cnf.has_key("Dinstall::TrackingServer"):
324                     carbon_copy.append(package + "@" + cnf["Dinstall::TrackingServer"])
325         elif '@' in copy_to:
326             carbon_copy.append(copy_to)
327         else:
328             utils.fubar("Invalid -C/--carbon-copy argument '%s'; not a bug number, 'package' or email address." % (copy_to))
329
330     if Options["Binary-Only"]:
331         field = "b.package"
332     else:
333         field = "s.source"
334     con_packages = "AND %s IN (%s)" % (field, ", ".join([ repr(i) for i in arguments ]))
335
336     (con_suites, con_architectures, con_components, check_source) = \
337                  utils.parse_args(Options)
338
339     # Additional suite checks
340     suite_ids_list = []
341     suites = utils.split_args(Options["Suite"])
342     suites_list = utils.join_with_commas_and(suites)
343     if not Options["No-Action"]:
344         for suite in suites:
345             s = get_suite(suite, session=session)
346             if s is not None:
347                 suite_ids_list.append(s.suite_id)
348             if suite == "stable":
349                 print "**WARNING** About to remove from the stable suite!"
350                 print "This should only be done just prior to a (point) release and not at"
351                 print "any other time."
352                 game_over()
353             elif suite == "testing":
354                 print "**WARNING About to remove from the testing suite!"
355                 print "There's no need to do this normally as removals from unstable will"
356                 print "propogate to testing automagically."
357                 game_over()
358
359     # Additional architecture checks
360     if Options["Architecture"] and check_source:
361         utils.warn("'source' in -a/--argument makes no sense and is ignored.")
362
363     # Additional component processing
364     over_con_components = con_components.replace("c.id", "component")
365
366     print "Working...",
367     sys.stdout.flush()
368     to_remove = []
369     maintainers = {}
370
371     # We have 3 modes of package selection: binary-only, source-only
372     # and source+binary.  The first two are trivial and obvious; the
373     # latter is a nasty mess, but very nice from a UI perspective so
374     # we try to support it.
375
376     # XXX: TODO: This all needs converting to use placeholders or the object
377     #            API. It's an SQL injection dream at the moment
378
379     if Options["Binary-Only"]:
380         # Binary-only
381         q = session.execute("SELECT b.package, b.version, a.arch_string, b.id, b.maintainer FROM binaries b, bin_associations ba, architecture a, suite su, files f, location l, component c WHERE ba.bin = b.id AND ba.suite = su.id AND b.architecture = a.id AND b.file = f.id AND f.location = l.id AND l.component = c.id %s %s %s %s" % (con_packages, con_suites, con_components, con_architectures))
382         for i in q.fetchall():
383             to_remove.append(i)
384     else:
385         # Source-only
386         source_packages = {}
387         q = session.execute("SELECT l.path, f.filename, s.source, s.version, 'source', s.id, s.maintainer FROM source s, src_associations sa, suite su, files f, location l, component c WHERE sa.source = s.id AND sa.suite = su.id AND s.file = f.id AND f.location = l.id AND l.component = c.id %s %s %s" % (con_packages, con_suites, con_components))
388         for i in q.fetchall():
389             source_packages[i[2]] = i[:2]
390             to_remove.append(i[2:])
391         if not Options["Source-Only"]:
392             # Source + Binary
393             binary_packages = {}
394             # First get a list of binary package names we suspect are linked to the source
395             q = session.execute("SELECT DISTINCT b.package FROM binaries b, source s, src_associations sa, suite su, files f, location l, component c WHERE b.source = s.id AND sa.source = s.id AND sa.suite = su.id AND s.file = f.id AND f.location = l.id AND l.component = c.id %s %s %s" % (con_packages, con_suites, con_components))
396             for i in q.fetchall():
397                 binary_packages[i[0]] = ""
398             # Then parse each .dsc that we found earlier to see what binary packages it thinks it produces
399             for i in source_packages.keys():
400                 filename = "/".join(source_packages[i])
401                 try:
402                     dsc = utils.parse_changes(filename, dsc_file=1)
403                 except CantOpenError:
404                     utils.warn("couldn't open '%s'." % (filename))
405                     continue
406                 for package in dsc.get("binary").split(','):
407                     package = package.strip()
408                     binary_packages[package] = ""
409             # Then for each binary package: find any version in
410             # unstable, check the Source: field in the deb matches our
411             # source package and if so add it to the list of packages
412             # to be removed.
413             for package in binary_packages.keys():
414                 q = session.execute("SELECT l.path, f.filename, b.package, b.version, a.arch_string, b.id, b.maintainer FROM binaries b, bin_associations ba, architecture a, suite su, files f, location l, component c WHERE ba.bin = b.id AND ba.suite = su.id AND b.architecture = a.id AND b.file = f.id AND f.location = l.id AND l.component = c.id %s %s %s AND b.package = '%s'" % (con_suites, con_components, con_architectures, package))
415                 for i in q.fetchall():
416                     filename = "/".join(i[:2])
417                     control = apt_pkg.ParseSection(apt_inst.debExtractControl(utils.open_file(filename)))
418                     source = control.Find("Source", control.Find("Package"))
419                     source = re_strip_source_version.sub('', source)
420                     if source_packages.has_key(source):
421                         to_remove.append(i[2:])
422     print "done."
423
424     if not to_remove:
425         print "Nothing to do."
426         sys.exit(0)
427
428     # If we don't have a reason; spawn an editor so the user can add one
429     # Write the rejection email out as the <foo>.reason file
430     if not Options["Reason"] and not Options["No-Action"]:
431         (fd, temp_filename) = utils.temp_filename()
432         editor = os.environ.get("EDITOR","vi")
433         result = os.system("%s %s" % (editor, temp_filename))
434         if result != 0:
435             utils.fubar ("vi invocation failed for `%s'!" % (temp_filename), result)
436         temp_file = utils.open_file(temp_filename)
437         for line in temp_file.readlines():
438             Options["Reason"] += line
439         temp_file.close()
440         os.unlink(temp_filename)
441
442     # Generate the summary of what's to be removed
443     d = {}
444     for i in to_remove:
445         package = i[0]
446         version = i[1]
447         architecture = i[2]
448         maintainer = i[4]
449         maintainers[maintainer] = ""
450         if not d.has_key(package):
451             d[package] = {}
452         if not d[package].has_key(version):
453             d[package][version] = []
454         if architecture not in d[package][version]:
455             d[package][version].append(architecture)
456
457     maintainer_list = []
458     for maintainer_id in maintainers.keys():
459         maintainer_list.append(get_maintainer(maintainer_id).name)
460     summary = ""
461     removals = d.keys()
462     removals.sort()
463     for package in removals:
464         versions = d[package].keys()
465         versions.sort(apt_pkg.VersionCompare)
466         for version in versions:
467             d[package][version].sort(utils.arch_compare_sw)
468             summary += "%10s | %10s | %s\n" % (package, version, ", ".join(d[package][version]))
469     print "Will remove the following packages from %s:" % (suites_list)
470     print
471     print summary
472     print "Maintainer: %s" % ", ".join(maintainer_list)
473     if Options["Done"]:
474         print "Will also close bugs: "+Options["Done"]
475     if carbon_copy:
476         print "Will also send CCs to: " + ", ".join(carbon_copy)
477     print
478     print "------------------- Reason -------------------"
479     print Options["Reason"]
480     print "----------------------------------------------"
481     print
482
483     if Options["Rdep-Check"]:
484         arches = utils.split_args(Options["Architecture"])
485         reverse_depends_check(removals, suites, arches)
486
487     # If -n/--no-action, drop out here
488     if Options["No-Action"]:
489         sys.exit(0)
490
491     print "Going to remove the packages now."
492     game_over()
493
494     whoami = utils.whoami()
495     date = commands.getoutput('date -R')
496
497     # Log first; if it all falls apart I want a record that we at least tried.
498     logfile = utils.open_file(cnf["Rm::LogFile"], 'a')
499     logfile.write("=========================================================================\n")
500     logfile.write("[Date: %s] [ftpmaster: %s]\n" % (date, whoami))
501     logfile.write("Removed the following packages from %s:\n\n%s" % (suites_list, summary))
502     if Options["Done"]:
503         logfile.write("Closed bugs: %s\n" % (Options["Done"]))
504     logfile.write("\n------------------- Reason -------------------\n%s\n" % (Options["Reason"]))
505     logfile.write("----------------------------------------------\n")
506     logfile.flush()
507
508     dsc_type_id = get_override_type('dsc', session).overridetype_id
509     deb_type_id = get_override_type('deb', session).overridetype_id
510
511     # Do the actual deletion
512     print "Deleting...",
513     sys.stdout.flush()
514
515     for i in to_remove:
516         package = i[0]
517         architecture = i[2]
518         package_id = i[3]
519         for suite_id in suite_ids_list:
520             if architecture == "source":
521                 session.execute("DELETE FROM src_associations WHERE source = :packageid AND suite = :suiteid",
522                                 {'packageid': package_id, 'suiteid': suite_id})
523                 #print "DELETE FROM src_associations WHERE source = %s AND suite = %s" % (package_id, suite_id)
524             else:
525                 session.execute("DELETE FROM bin_associations WHERE bin = :packageid AND suite = :suiteid",
526                                 {'packageid': package_id, 'suiteid': suite_id})
527                 #print "DELETE FROM bin_associations WHERE bin = %s AND suite = %s" % (package_id, suite_id)
528             # Delete from the override file
529             if not Options["Partial"]:
530                 if architecture == "source":
531                     type_id = dsc_type_id
532                 else:
533                     type_id = deb_type_id
534                 # TODO: Again, fix this properly to remove the remaining non-bind argument
535                 session.execute("DELETE FROM override WHERE package = :package AND type = :typeid AND suite = :suiteid %s" % (over_con_components), {'package': package, 'typeid': type_id, 'suiteid': suite_id})
536     session.commit()
537     print "done."
538
539     # Send the bug closing messages
540     if Options["Done"]:
541         Subst = {}
542         Subst["__RM_ADDRESS__"] = cnf["Rm::MyEmailAddress"]
543         Subst["__BUG_SERVER__"] = cnf["Dinstall::BugServer"]
544         bcc = []
545         if cnf.Find("Dinstall::Bcc") != "":
546             bcc.append(cnf["Dinstall::Bcc"])
547         if cnf.Find("Rm::Bcc") != "":
548             bcc.append(cnf["Rm::Bcc"])
549         if bcc:
550             Subst["__BCC__"] = "Bcc: " + ", ".join(bcc)
551         else:
552             Subst["__BCC__"] = "X-Filler: 42"
553         Subst["__CC__"] = "X-DAK: dak rm"
554         if carbon_copy:
555             Subst["__CC__"] += "\nCc: " + ", ".join(carbon_copy)
556         Subst["__SUITE_LIST__"] = suites_list
557         summarymail = "%s\n------------------- Reason -------------------\n%s\n" % (summary, Options["Reason"])
558         summarymail += "----------------------------------------------\n"
559         Subst["__SUMMARY__"] = summarymail
560         Subst["__SUBJECT__"] = "Removed package(s) from %s" % (suites_list)
561         Subst["__ADMIN_ADDRESS__"] = cnf["Dinstall::MyAdminAddress"]
562         Subst["__DISTRO__"] = cnf["Dinstall::MyDistribution"]
563         Subst["__WHOAMI__"] = whoami
564         whereami = utils.where_am_i()
565         Archive = cnf.SubTree("Archive::%s" % (whereami))
566         Subst["__MASTER_ARCHIVE__"] = Archive["OriginServer"]
567         Subst["__PRIMARY_MIRROR__"] = Archive["PrimaryMirror"]
568         for bug in utils.split_args(Options["Done"]):
569             Subst["__BUG_NUMBER__"] = bug
570             mail_message = utils.TemplateSubst(Subst,cnf["Dir::Templates"]+"/rm.bug-close")
571             utils.send_mail(mail_message)
572
573     logfile.write("=========================================================================\n")
574     logfile.close()
575
576 #######################################################################################
577
578 if __name__ == '__main__':
579     main()