diff --git a/doc/pungi.8 b/doc/pungi.8 index 79706947..4ca8cb1c 100644 --- a/doc/pungi.8 +++ b/doc/pungi.8 @@ -31,8 +31,6 @@ The URL for your bug reporting system (defaults to http://bugzilla.redhat.com)\& The number of discs you want to create (defaults to 1)\&. .IP "\fB\-\-nosource\fP" Disable gathering of source packages (optional)\&. -.IP "\fB\-\-nosplitmedia\fP" -Disable creation of split media (optional)\&. .IP "\fB\-\-sourceisos\fP" Create the source media images (other arch runs must be done)\&. .IP "\fB\-\-force\fP" diff --git a/src/bin/pungi.py b/src/bin/pungi.py index 025b8636..27ac3664 100755 --- a/src/bin/pungi.py +++ b/src/bin/pungi.py @@ -120,7 +120,7 @@ def main(): mypungi.doBuildinstall() if opts.do_all or opts.do_createiso: - mypungi.doCreateIsos(split=opts.nosplitmedia) + mypungi.doCreateIsos() # Do things slightly different for src. if opts.sourceisos: @@ -178,8 +178,6 @@ if __name__ == '__main__': help='disable gathering of source packages (optional)') parser.add_option("--nodebuginfo", action="store_true", dest="nodebuginfo", help='disable gathering of debuginfo packages (optional)') - parser.add_option("--nosplitmedia", action="store_false", dest="nosplitmedia", default=True, - help='disable creation of split media (optional)') parser.add_option("--sourceisos", default=False, action="store_true", dest="sourceisos", help='Create the source isos (other arch runs must be done)') parser.add_option("--force", default=False, action="store_true",