From 55c00f6d608ac44c57dc3c05a87b65a0026c3c38 Mon Sep 17 00:00:00 2001 From: Pat Riehecky Date: Mon, 9 Jun 2014 16:22:10 -0500 Subject: [PATCH] Added option for setting release note files --- src/bin/pungi.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/bin/pungi.py b/src/bin/pungi.py index be53493c..fa5587d5 100755 --- a/src/bin/pungi.py +++ b/src/bin/pungi.py @@ -273,6 +273,12 @@ if __name__ == '__main__': help="Flag to enable processing the BuildInstall stage") parser.add_option("-I", action="store_true", default=False, dest="do_createiso", help="Flag to enable processing the CreateISO stage") + parser.add_option("--relnotepkgs", dest="relnotepkgs", type="string", + action="callback", callback=set_config, callback_args=(config, ), + help='Rpms which contain the release notes') + parser.add_option("--relnotefilere", dest="relnotefilere", type="string", + action="callback", callback=set_config, callback_args=(config, ), + help='Which files are the release notes -- GPL EULA') (opts, args) = parser.parse_args()