3 # Installs Debian packages from queue/accepted into the pool
4 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2006 James Troup <james@nocrew.org>
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.
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.
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
20 ###############################################################################
22 # Cartman: "I'm trying to make the best of a bad situation, I don't
23 # need to hear crap from a bunch of hippy freaks living in
24 # denial. Screw you guys, I'm going home."
26 # Kyle: "But Cartman, we're trying to..."
28 # Cartman: "uhh.. screw you guys... home."
30 ###############################################################################
32 import errno, fcntl, os, sys, time, re
34 from daklib import database
35 from daklib import logging
36 from daklib import queue
37 from daklib import utils
38 from daklib.dak_exceptions import *
40 ###############################################################################
60 installing_to_stable = 0
62 ###############################################################################
64 # FIXME: this should go away to some Debian specific file
65 # FIXME: should die if file already exists
68 "Urgency Logger object"
69 def __init__ (self, Cnf):
70 "Initialize a new Urgency Logger object"
72 self.timestamp = time.strftime("%Y%m%d%H%M%S")
73 # Create the log directory if it doesn't exist
74 self.log_dir = Cnf["Dir::UrgencyLog"]
75 if not os.path.exists(self.log_dir) or not os.access(self.log_dir, os.W_OK):
76 utils.warn("UrgencyLog directory %s does not exist or is not writeable, using /srv/ftp.debian.org/tmp/ instead" % (self.log_dir))
77 self.log_dir = '/srv/ftp.debian.org/tmp/'
79 self.log_filename = "%s/.install-urgencies-%s.new" % (self.log_dir, self.timestamp)
80 self.log_file = utils.open_file(self.log_filename, 'w')
83 def log (self, source, version, urgency):
85 self.log_file.write(" ".join([source, version, urgency])+'\n')
90 "Close a Logger object"
94 new_filename = "%s/install-urgencies-%s" % (self.log_dir, self.timestamp)
95 utils.move(self.log_filename, new_filename)
97 os.unlink(self.log_filename)
99 ###############################################################################
101 def reject (str, prefix="Rejected: "):
102 global reject_message
104 reject_message += prefix + str + "\n"
106 # Recheck anything that relies on the database; since that's not
107 # frozen between accept and our run time.
112 for file in files.keys():
113 # The .orig.tar.gz can disappear out from under us is it's a
114 # duplicate of one in the archive.
115 if not files.has_key(file):
117 # Check that the source still exists
118 if files[file]["type"] == "deb":
119 source_version = files[file]["source version"]
120 source_package = files[file]["source package"]
121 if not changes["architecture"].has_key("source") \
122 and not Upload.source_exists(source_package, source_version, changes["distribution"].keys()):
123 reject("no source found for %s %s (%s)." % (source_package, source_version, file))
125 # Version and file overwrite checks
126 if not installing_to_stable:
127 if files[file]["type"] == "deb":
128 reject(Upload.check_binary_against_db(file), "")
129 elif files[file]["type"] == "dsc":
130 reject(Upload.check_source_against_db(file), "")
131 (reject_msg, is_in_incoming) = Upload.check_dsc_against_db(file)
132 reject(reject_msg, "")
134 # propogate in the case it is in the override tables:
135 if changes.has_key("propdistribution"):
136 for suite in changes["propdistribution"].keys():
137 if Upload.in_override_p(files[file]["package"], files[file]["component"], suite, files[file].get("dbtype",""), file):
140 nopropogate[suite] = 1
142 for suite in propogate.keys():
143 if suite in nopropogate:
145 changes["distribution"][suite] = 1
147 for file in files.keys():
148 # Check the package is still in the override tables
149 for suite in changes["distribution"].keys():
150 if not Upload.in_override_p(files[file]["package"], files[file]["component"], suite, files[file].get("dbtype",""), file):
151 reject("%s is NEW for %s." % (file, suite))
153 ###############################################################################
156 global Cnf, Options, Upload, projectB, changes, dsc, dsc_files, files, pkg, Subst
158 Cnf = utils.get_conf()
160 Arguments = [('a',"automatic","Dinstall::Options::Automatic"),
161 ('h',"help","Dinstall::Options::Help"),
162 ('n',"no-action","Dinstall::Options::No-Action"),
163 ('p',"no-lock", "Dinstall::Options::No-Lock"),
164 ('s',"no-mail", "Dinstall::Options::No-Mail")]
166 for i in ["automatic", "help", "no-action", "no-lock", "no-mail", "version"]:
167 if not Cnf.has_key("Dinstall::Options::%s" % (i)):
168 Cnf["Dinstall::Options::%s" % (i)] = ""
170 changes_files = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv)
171 Options = Cnf.SubTree("Dinstall::Options")
176 Upload = queue.Upload(Cnf)
177 projectB = Upload.projectB
179 changes = Upload.pkg.changes
181 dsc_files = Upload.pkg.dsc_files
182 files = Upload.pkg.files
188 ###############################################################################
190 def usage (exit_code=0):
191 print """Usage: dak process-accepted [OPTION]... [CHANGES]...
192 -a, --automatic automatic run
193 -h, --help show this help and exit.
194 -n, --no-action don't do anything
195 -p, --no-lock don't check lockfile !! for cron.daily only !!
196 -s, --no-mail don't send any mail
197 -V, --version display the version number and exit"""
200 ###############################################################################
203 (summary, short_summary) = Upload.build_summaries()
205 (prompt, answer) = ("", "XXX")
206 if Options["No-Action"] or Options["Automatic"]:
209 if reject_message.find("Rejected") != -1:
210 print "REJECT\n" + reject_message,
211 prompt = "[R]eject, Skip, Quit ?"
212 if Options["Automatic"]:
215 print "INSTALL to " + ", ".join(changes["distribution"].keys())
216 print reject_message + summary,
217 prompt = "[I]nstall, Skip, Quit ?"
218 if Options["Automatic"]:
221 while prompt.find(answer) == -1:
222 answer = utils.our_raw_input(prompt)
223 m = queue.re_default_answer.match(prompt)
226 answer = answer[:1].upper()
231 if not installing_to_stable:
234 stable_install(summary, short_summary)
238 ###############################################################################
240 # Our reject is not really a reject, but an unaccept, but since a) the
241 # code for that is non-trivial (reopen bugs, unannounce etc.), b) this
242 # should be exteremly rare, for now we'll go with whining at our admin
246 Subst["__REJECTOR_ADDRESS__"] = Cnf["Dinstall::MyEmailAddress"]
247 Subst["__REJECT_MESSAGE__"] = reject_message
248 Subst["__CC__"] = "Cc: " + Cnf["Dinstall::MyEmailAddress"]
249 reject_mail_message = utils.TemplateSubst(Subst,Cnf["Dir::Templates"]+"/process-accepted.unaccept")
251 # Write the rejection email out as the <foo>.reason file
252 reason_filename = os.path.basename(pkg.changes_file[:-8]) + ".reason"
253 reject_filename = Cnf["Dir::Queue::Reject"] + '/' + reason_filename
254 # If we fail here someone is probably trying to exploit the race
255 # so let's just raise an exception ...
256 if os.path.exists(reject_filename):
257 os.unlink(reject_filename)
258 fd = os.open(reject_filename, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0644)
259 os.write(fd, reject_mail_message)
262 utils.send_mail(reject_mail_message)
263 Logger.log(["unaccepted", pkg.changes_file])
265 ###############################################################################
268 global install_count, install_bytes
272 Logger.log(["installing changes",pkg.changes_file])
274 # Begin a transaction; if we bomb out anywhere between here and the COMMIT WORK below, the DB will not be changed.
275 projectB.query("BEGIN WORK")
277 # Ensure that we have all the hashes we need below.
278 rejmsg = utils.ensure_hashes(changes, dsc, files, dsc_files)
280 # There were errors. Print them and SKIP the changes.
285 # Add the .dsc file to the DB
286 for file in files.keys():
287 if files[file]["type"] == "dsc":
288 package = dsc["source"]
289 version = dsc["version"] # NB: not files[file]["version"], that has no epoch
290 maintainer = dsc["maintainer"]
291 maintainer = maintainer.replace("'", "\\'")
292 maintainer_id = database.get_or_set_maintainer_id(maintainer)
293 changedby = changes["changed-by"]
294 changedby = changedby.replace("'", "\\'")
295 changedby_id = database.get_or_set_maintainer_id(changedby)
296 fingerprint_id = database.get_or_set_fingerprint_id(dsc["fingerprint"])
297 install_date = time.strftime("%Y-%m-%d")
298 filename = files[file]["pool name"] + file
299 dsc_component = files[file]["component"]
300 dsc_location_id = files[file]["location id"]
301 if dsc.has_key("dm-upload-allowed") and dsc["dm-upload-allowed"] == "yes":
302 dm_upload_allowed = "true"
304 dm_upload_allowed = "false"
305 if not files[file].has_key("files id") or not files[file]["files id"]:
306 files[file]["files id"] = database.set_files_id (filename, files[file]["size"], files[file]["md5sum"], files[file]["sha1sum"], files[file]["sha256sum"], dsc_location_id)
307 projectB.query("INSERT INTO source (source, version, maintainer, changedby, file, install_date, sig_fpr, dm_upload_allowed) VALUES ('%s', '%s', %d, %d, %d, '%s', %s, %s)"
308 % (package, version, maintainer_id, changedby_id, files[file]["files id"], install_date, fingerprint_id, dm_upload_allowed))
310 for suite in changes["distribution"].keys():
311 suite_id = database.get_suite_id(suite)
312 projectB.query("INSERT INTO src_associations (suite, source) VALUES (%d, currval('source_id_seq'))" % (suite_id))
314 # Add the source files to the DB (files and dsc_files)
315 projectB.query("INSERT INTO dsc_files (source, file) VALUES (currval('source_id_seq'), %d)" % (files[file]["files id"]))
316 for dsc_file in dsc_files.keys():
317 filename = files[file]["pool name"] + dsc_file
318 # If the .orig.tar.gz is already in the pool, it's
319 # files id is stored in dsc_files by check_dsc().
320 files_id = dsc_files[dsc_file].get("files id", None)
322 files_id = database.get_files_id(filename, dsc_files[dsc_file]["size"], dsc_files[dsc_file]["md5sum"], dsc_location_id)
323 # FIXME: needs to check for -1/-2 and or handle exception
325 files_id = database.set_files_id (filename, dsc_files[dsc_file]["size"], dsc_files[dsc_file]["md5sum"], files[dsc_file]["sha1sum"], files[dsc_file]["sha256sum"], dsc_location_id)
326 projectB.query("INSERT INTO dsc_files (source, file) VALUES (currval('source_id_seq'), %d)" % (files_id))
328 # Add the src_uploaders to the DB
329 uploader_ids = [maintainer_id]
330 if dsc.has_key("uploaders"):
331 for u in dsc["uploaders"].split(","):
332 u = u.replace("'", "\\'")
335 database.get_or_set_maintainer_id(u))
337 for u in uploader_ids:
338 if added_ids.has_key(u):
339 utils.warn("Already saw uploader %s for source %s" % (u, package))
342 projectB.query("INSERT INTO src_uploaders (source, maintainer) VALUES (currval('source_id_seq'), %d)" % (u))
345 # Add the .deb files to the DB
346 for file in files.keys():
347 if files[file]["type"] == "deb":
348 package = files[file]["package"]
349 version = files[file]["version"]
350 maintainer = files[file]["maintainer"]
351 maintainer = maintainer.replace("'", "\\'")
352 maintainer_id = database.get_or_set_maintainer_id(maintainer)
353 fingerprint_id = database.get_or_set_fingerprint_id(changes["fingerprint"])
354 architecture = files[file]["architecture"]
355 architecture_id = database.get_architecture_id (architecture)
356 type = files[file]["dbtype"]
357 source = files[file]["source package"]
358 source_version = files[file]["source version"]
359 filename = files[file]["pool name"] + file
360 if not files[file].has_key("location id") or not files[file]["location id"]:
361 files[file]["location id"] = database.get_location_id(Cnf["Dir::Pool"],files[file]["component"],utils.where_am_i())
362 if not files[file].has_key("files id") or not files[file]["files id"]:
363 files[file]["files id"] = database.set_files_id (filename, files[file]["size"], files[file]["md5sum"], files[file]["sha1sum"], files[file]["sha256sum"], files[file]["location id"])
364 source_id = database.get_source_id (source, source_version)
366 projectB.query("INSERT INTO binaries (package, version, maintainer, source, architecture, file, type, sig_fpr) VALUES ('%s', '%s', %d, %d, %d, %d, '%s', %d)"
367 % (package, version, maintainer_id, source_id, architecture_id, files[file]["files id"], type, fingerprint_id))
369 raise NoSourceFieldError, "Unable to find a source id for %s (%s), %s, file %s, type %s, signed by %s" % (package, version, architecture, file, type, sig_fpr)
370 for suite in changes["distribution"].keys():
371 suite_id = database.get_suite_id(suite)
372 projectB.query("INSERT INTO bin_associations (suite, bin) VALUES (%d, currval('binaries_id_seq'))" % (suite_id))
374 # If the .orig.tar.gz is in a legacy directory we need to poolify
375 # it, so that apt-get source (and anything else that goes by the
376 # "Directory:" field in the Sources.gz file) works.
377 orig_tar_id = Upload.pkg.orig_tar_id
378 orig_tar_location = Upload.pkg.orig_tar_location
379 legacy_source_untouchable = Upload.pkg.legacy_source_untouchable
380 if orig_tar_id and orig_tar_location == "legacy":
381 q = projectB.query("SELECT DISTINCT ON (f.id) l.path, f.filename, f.id as files_id, df.source, df.id as dsc_files_id, f.size, f.md5sum FROM files f, dsc_files df, location l WHERE df.source IN (SELECT source FROM dsc_files WHERE file = %s) AND f.id = df.file AND l.id = f.location AND (l.type = 'legacy' OR l.type = 'legacy-mixed')" % (orig_tar_id))
384 # Is this an old upload superseded by a newer -sa upload? (See check_dsc() for details)
385 if legacy_source_untouchable.has_key(qid["files_id"]):
387 # First move the files to the new location
388 legacy_filename = qid["path"] + qid["filename"]
389 pool_location = utils.poolify (changes["source"], files[file]["component"])
390 pool_filename = pool_location + os.path.basename(qid["filename"])
391 destination = Cnf["Dir::Pool"] + pool_location
392 utils.move(legacy_filename, destination)
393 # Then Update the DB's files table
394 q = projectB.query("UPDATE files SET filename = '%s', location = '%s' WHERE id = '%s'" % (pool_filename, dsc_location_id, qid["files_id"]))
396 # If this is a sourceful diff only upload that is moving non-legacy
397 # cross-component we need to copy the .orig.tar.gz into the new
398 # component too for the same reasons as above.
400 if changes["architecture"].has_key("source") and orig_tar_id and \
401 orig_tar_location != "legacy" and orig_tar_location != dsc_location_id:
402 q = projectB.query("SELECT l.path, f.filename, f.size, f.md5sum, f.sha1sum, f.sha256sum FROM files f, location l WHERE f.id = %s AND f.location = l.id" % (orig_tar_id))
403 ql = q.getresult()[0]
404 old_filename = ql[0] + ql[1]
408 file_sha256sum = ql[5]
409 new_filename = utils.poolify(changes["source"], dsc_component) + os.path.basename(old_filename)
410 new_files_id = database.get_files_id(new_filename, file_size, file_md5sum, dsc_location_id)
411 if new_files_id == None:
412 utils.copy(old_filename, Cnf["Dir::Pool"] + new_filename)
413 new_files_id = database.set_files_id(new_filename, file_size, file_md5sum, file_sha1sum, file_sha256sum, dsc_location_id)
414 projectB.query("UPDATE dsc_files SET file = %s WHERE source = %s AND file = %s" % (new_files_id, database.get_source_id(changes["source"], changes["version"]), orig_tar_id))
416 # Install the files into the pool
417 for file in files.keys():
418 destination = Cnf["Dir::Pool"] + files[file]["pool name"] + file
419 utils.move(file, destination)
420 Logger.log(["installed", file, files[file]["type"], files[file]["size"], files[file]["architecture"]])
421 install_bytes += float(files[file]["size"])
423 # Copy the .changes file across for suite which need it.
426 for suite in changes["distribution"].keys():
427 if Cnf.has_key("Suite::%s::CopyChanges" % (suite)):
428 copy_changes[Cnf["Suite::%s::CopyChanges" % (suite)]] = ""
429 # and the .dak file...
430 if Cnf.has_key("Suite::%s::CopyDotDak" % (suite)):
431 copy_dot_dak[Cnf["Suite::%s::CopyDotDak" % (suite)]] = ""
432 for dest in copy_changes.keys():
433 utils.copy(pkg.changes_file, Cnf["Dir::Root"] + dest)
434 for dest in copy_dot_dak.keys():
435 utils.copy(Upload.pkg.changes_file[:-8]+".dak", dest)
437 projectB.query("COMMIT WORK")
439 # Move the .changes into the 'done' directory
440 utils.move (pkg.changes_file,
441 os.path.join(Cnf["Dir::Queue::Done"], os.path.basename(pkg.changes_file)))
443 # Remove the .dak file
444 os.unlink(Upload.pkg.changes_file[:-8]+".dak")
446 if changes["architecture"].has_key("source") and Urgency_Logger:
447 Urgency_Logger.log(dsc["source"], dsc["version"], changes["urgency"])
449 # Undo the work done in queue.py(accept) to help auto-building
451 projectB.query("BEGIN WORK")
452 for suite in changes["distribution"].keys():
453 if suite not in Cnf.ValueList("Dinstall::QueueBuildSuites"):
455 now_date = time.strftime("%Y-%m-%d %H:%M")
456 suite_id = database.get_suite_id(suite)
457 dest_dir = Cnf["Dir::QueueBuild"]
458 if Cnf.FindB("Dinstall::SecurityQueueBuild"):
459 dest_dir = os.path.join(dest_dir, suite)
460 for file in files.keys():
461 dest = os.path.join(dest_dir, file)
462 # Remove it from the list of packages for later processing by apt-ftparchive
463 projectB.query("UPDATE queue_build SET in_queue = 'f', last_used = '%s' WHERE filename = '%s' AND suite = %s" % (now_date, dest, suite_id))
464 if not Cnf.FindB("Dinstall::SecurityQueueBuild"):
465 # Update the symlink to point to the new location in the pool
466 pool_location = utils.poolify (changes["source"], files[file]["component"])
467 src = os.path.join(Cnf["Dir::Pool"], pool_location, os.path.basename(file))
468 if os.path.islink(dest):
470 os.symlink(src, dest)
471 # Update last_used on any non-upload .orig.tar.gz symlink
473 # Determine the .orig.tar.gz file name
474 for dsc_file in dsc_files.keys():
475 if dsc_file.endswith(".orig.tar.gz"):
476 orig_tar_gz = os.path.join(dest_dir, dsc_file)
477 # Remove it from the list of packages for later processing by apt-ftparchive
478 projectB.query("UPDATE queue_build SET in_queue = 'f', last_used = '%s' WHERE filename = '%s' AND suite = %s" % (now_date, orig_tar_gz, suite_id))
479 projectB.query("COMMIT WORK")
484 ################################################################################
486 def stable_install (summary, short_summary):
489 print "Installing to stable."
491 # Begin a transaction; if we bomb out anywhere between here and
492 # the COMMIT WORK below, the DB won't be changed.
493 projectB.query("BEGIN WORK")
495 # Add the source to stable (and remove it from proposed-updates)
496 for file in files.keys():
497 if files[file]["type"] == "dsc":
498 package = dsc["source"]
499 version = dsc["version"]; # NB: not files[file]["version"], that has no epoch
500 q = projectB.query("SELECT id FROM source WHERE source = '%s' AND version = '%s'" % (package, version))
503 utils.fubar("[INTERNAL ERROR] couldn't find '%s' (%s) in source table." % (package, version))
505 suite_id = database.get_suite_id('proposed-updates')
506 projectB.query("DELETE FROM src_associations WHERE suite = '%s' AND source = '%s'" % (suite_id, source_id))
507 suite_id = database.get_suite_id('stable')
508 projectB.query("INSERT INTO src_associations (suite, source) VALUES ('%s', '%s')" % (suite_id, source_id))
510 # Add the binaries to stable (and remove it/them from proposed-updates)
511 for file in files.keys():
512 if files[file]["type"] == "deb":
513 package = files[file]["package"]
514 version = files[file]["version"]
515 architecture = files[file]["architecture"]
516 q = projectB.query("SELECT b.id FROM binaries b, architecture a WHERE b.package = '%s' AND b.version = '%s' AND (a.arch_string = '%s' OR a.arch_string = 'all') AND b.architecture = a.id" % (package, version, architecture))
519 utils.fubar("[INTERNAL ERROR] couldn't find '%s' (%s for %s architecture) in binaries table." % (package, version, architecture))
522 suite_id = database.get_suite_id('proposed-updates')
523 projectB.query("DELETE FROM bin_associations WHERE suite = '%s' AND bin = '%s'" % (suite_id, binary_id))
524 suite_id = database.get_suite_id('stable')
525 projectB.query("INSERT INTO bin_associations (suite, bin) VALUES ('%s', '%s')" % (suite_id, binary_id))
527 projectB.query("COMMIT WORK")
529 utils.move (pkg.changes_file, Cnf["Dir::Morgue"] + '/process-accepted/' + os.path.basename(pkg.changes_file))
531 ## Update the Stable ChangeLog file
532 new_changelog_filename = Cnf["Dir::Root"] + Cnf["Suite::Stable::ChangeLogBase"] + ".ChangeLog"
533 changelog_filename = Cnf["Dir::Root"] + Cnf["Suite::Stable::ChangeLogBase"] + "ChangeLog"
534 if os.path.exists(new_changelog_filename):
535 os.unlink (new_changelog_filename)
537 new_changelog = utils.open_file(new_changelog_filename, 'w')
538 for file in files.keys():
539 if files[file]["type"] == "deb":
540 new_changelog.write("stable/%s/binary-%s/%s\n" % (files[file]["component"], files[file]["architecture"], file))
541 elif utils.re_issource.match(file):
542 new_changelog.write("stable/%s/source/%s\n" % (files[file]["component"], file))
544 new_changelog.write("%s\n" % (file))
545 chop_changes = queue.re_fdnic.sub("\n", changes["changes"])
546 new_changelog.write(chop_changes + '\n\n')
547 if os.access(changelog_filename, os.R_OK) != 0:
548 changelog = utils.open_file(changelog_filename)
549 new_changelog.write(changelog.read())
550 new_changelog.close()
551 if os.access(changelog_filename, os.R_OK) != 0:
552 os.unlink(changelog_filename)
553 utils.move(new_changelog_filename, changelog_filename)
557 if not Options["No-Mail"] and changes["architecture"].has_key("source"):
558 Subst["__SUITE__"] = " into stable"
559 Subst["__SUMMARY__"] = summary
560 mail_message = utils.TemplateSubst(Subst,Cnf["Dir::Templates"]+"/process-accepted.install")
561 utils.send_mail(mail_message)
562 Upload.announce(short_summary, 1)
564 # Finally remove the .dak file
565 dot_dak_file = os.path.join(Cnf["Suite::Proposed-Updates::CopyDotDak"], os.path.basename(Upload.pkg.changes_file[:-8]+".dak"))
566 os.unlink(dot_dak_file)
568 ################################################################################
570 def process_it (changes_file):
571 global reject_message
575 # Absolutize the filename to avoid the requirement of being in the
576 # same directory as the .changes file.
577 pkg.changes_file = os.path.abspath(changes_file)
579 # And since handling of installs to stable munges with the CWD
580 # save and restore it.
581 pkg.directory = os.getcwd()
583 if installing_to_stable:
584 old = Upload.pkg.changes_file
585 Upload.pkg.changes_file = os.path.basename(old)
586 os.chdir(Cnf["Suite::Proposed-Updates::CopyDotDak"])
590 Upload.update_subst()
592 if installing_to_stable:
593 Upload.pkg.changes_file = old
599 os.chdir(pkg.directory)
601 ###############################################################################
604 global projectB, Logger, Urgency_Logger, installing_to_stable
606 changes_files = init()
608 # -n/--dry-run invalidates some other options which would involve things happening
609 if Options["No-Action"]:
610 Options["Automatic"] = ""
612 # Check that we aren't going to clash with the daily cron job
614 if not Options["No-Action"] and os.path.exists("%s/Archive_Maintenance_In_Progress" % (Cnf["Dir::Root"])) and not Options["No-Lock"]:
615 utils.fubar("Archive maintenance in progress. Try again later.")
617 # If running from within proposed-updates; assume an install to stable
618 if os.getcwd().find('proposed-updates') != -1:
619 installing_to_stable = 1
621 # Obtain lock if not in no-action mode and initialize the log
622 if not Options["No-Action"]:
623 lock_fd = os.open(Cnf["Dinstall::LockFile"], os.O_RDWR | os.O_CREAT)
625 fcntl.lockf(lock_fd, fcntl.LOCK_EX | fcntl.LOCK_NB)
627 if errno.errorcode[e.errno] == 'EACCES' or errno.errorcode[e.errno] == 'EAGAIN':
628 utils.fubar("Couldn't obtain lock; assuming another 'dak process-accepted' is already running.")
631 Logger = Upload.Logger = logging.Logger(Cnf, "process-accepted")
632 if not installing_to_stable and Cnf.get("Dir::UrgencyLog"):
633 Urgency_Logger = Urgency_Log(Cnf)
635 # Initialize the substitution template mapping global
636 bcc = "X-DAK: dak process-accepted\nX-Katie: $Revision: 1.18 $"
637 if Cnf.has_key("Dinstall::Bcc"):
638 Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"])
640 Subst["__BCC__"] = bcc
642 # Sort the .changes files so that we process sourceful ones first
643 changes_files.sort(utils.changes_compare)
645 # Process the changes files
646 for changes_file in changes_files:
647 print "\n" + changes_file
648 process_it (changes_file)
652 if install_count > 1:
654 sys.stderr.write("Installed %d package %s, %s.\n" % (install_count, sets, utils.size_type(int(install_bytes))))
655 Logger.log(["total",install_count,install_bytes])
657 if not Options["No-Action"]:
660 Urgency_Logger.close()
662 ###############################################################################
664 if __name__ == '__main__':