Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/osbuilder.py
diff options
context:
space:
mode:
authorDaniel Drake <dsd@laptop.org>2009-12-22 14:16:32 (GMT)
committer Daniel Drake <dsd@laptop.org>2009-12-22 14:16:32 (GMT)
commit3faf46e087e63f5226d1c921ab2756eaf6a33524 (patch)
treeb20b787df661fdeb60004adf8a84b8d0eefccc91 /osbuilder.py
parentb997a15c5c5d65478dd9b6f280e85edf2479e941 (diff)
Show which kspost-generated code is being executed
Diffstat (limited to 'osbuilder.py')
-rwxr-xr-xosbuilder.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/osbuilder.py b/osbuilder.py
index b48859a..fc8f641 100755
--- a/osbuilder.py
+++ b/osbuilder.py
@@ -198,7 +198,8 @@ class KspostStage(KsStage):
output.write("\n%post --erroronfail")
if ".nochroot." in part:
output.write(" --nochroot")
- print >>output, "\n# Processing %s:%s/%s" % (self.name, mod, part)
+ print >>output, "\necho 'Executing code generated by %s:%s/%s...'" \
+ % (self.name, mod, part)
print >>output, "set -e"
def on_run_part_done(self, mod, part, output):