diff options
author | josch <j.schauer@email.de> | 2015-01-04 10:56:53 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-01-04 11:23:20 +0100 |
commit | 564897c0af048c302a15a4bfab4092b520ba4f5f (patch) | |
tree | ca67ca079c0137c134f8b8b226c92d32bf8c5783 | |
parent | 0a0c1b5aa4c9c3139f28f0e5eea8a7b0b1cf2da2 (diff) | |
download | jenkins.debian.net-564897c0af048c302a15a4bfab4092b520ba4f5f.tar.xz |
bin/find_dpkg_trigger_cycles.sh: cat result-file result-explicit
-rwxr-xr-x | bin/find_dpkg_trigger_cycles.sh | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/bin/find_dpkg_trigger_cycles.sh b/bin/find_dpkg_trigger_cycles.sh index eac4b2fa..60272493 100755 --- a/bin/find_dpkg_trigger_cycles.sh +++ b/bin/find_dpkg_trigger_cycles.sh @@ -240,4 +240,27 @@ cat interested-explicit | while read pkg ttype iname; do done >> result-explicit done - +echo "+----------------------------------------------------------+" +echo "| file based triggers |" +echo "+----------------------------------------------------------+" +echo "" +echo "# Associates binary packages with other binary packages they can form a file" +echo "# trigger cycle with. The first column is the binary package containing the file" +echo "# trigger, the second column is the file trigger, the third column is a binary" +echo "# package providing a path that triggers the binary package in the first column," +echo "# the fourth column is the triggering path of provided by the binary package in" +echo "# the third column." +echo "" +cat result-file +echo "" +echo "" +echo "+----------------------------------------------------------+" +echo "| explicit triggers |" +echo "+----------------------------------------------------------+" +echo "" +echo "# Associates binary packages with other binary packages they can form an explicit" +echo "# trigger cycle with. The first column is the binary package interested in the" +echo "# explicit trigger, the second column is the name of the explicit trigger, the" +echo "# third column is the binary package activating the trigger." +echo "" +cat result-explicit |