Remove options to do split media composes

This commit is contained in:
Jesse Keating 2010-11-12 09:18:04 -08:00
parent 9b221ec535
commit 9976438e31
2 changed files with 1 additions and 5 deletions

View File

@ -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)\&. The number of discs you want to create (defaults to 1)\&.
.IP "\fB\-\-nosource\fP" .IP "\fB\-\-nosource\fP"
Disable gathering of source packages (optional)\&. Disable gathering of source packages (optional)\&.
.IP "\fB\-\-nosplitmedia\fP"
Disable creation of split media (optional)\&.
.IP "\fB\-\-sourceisos\fP" .IP "\fB\-\-sourceisos\fP"
Create the source media images (other arch runs must be done)\&. Create the source media images (other arch runs must be done)\&.
.IP "\fB\-\-force\fP" .IP "\fB\-\-force\fP"

View File

@ -120,7 +120,7 @@ def main():
mypungi.doBuildinstall() mypungi.doBuildinstall()
if opts.do_all or opts.do_createiso: if opts.do_all or opts.do_createiso:
mypungi.doCreateIsos(split=opts.nosplitmedia) mypungi.doCreateIsos()
# Do things slightly different for src. # Do things slightly different for src.
if opts.sourceisos: if opts.sourceisos:
@ -178,8 +178,6 @@ if __name__ == '__main__':
help='disable gathering of source packages (optional)') help='disable gathering of source packages (optional)')
parser.add_option("--nodebuginfo", action="store_true", dest="nodebuginfo", parser.add_option("--nodebuginfo", action="store_true", dest="nodebuginfo",
help='disable gathering of debuginfo packages (optional)') 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", parser.add_option("--sourceisos", default=False, action="store_true", dest="sourceisos",
help='Create the source isos (other arch runs must be done)') help='Create the source isos (other arch runs must be done)')
parser.add_option("--force", default=False, action="store_true", parser.add_option("--force", default=False, action="store_true",