summaryrefslogtreecommitdiffstats
path: root/flags.py
Commit message (Collapse)AuthorAgeFilesLines
* Install the driver discs according to what was loaded in stage1Martin Sivak2010-01-081-0/+1
|
* Nothing sets flags.setupFilesystems anymore, so it can go too.Chris Lumens2009-12-031-1/+0
|
* Remove rootPath mode.Chris Lumens2009-12-031-1/+0
| | | | | | | This mode is decaying as anaconda moves forward with things like udev, dbus etc. No one is really working on making sure they continue to work. Let's stop pretending and also get rid of some additional complicated ways to run anaconda.
* Add sshd support for non-s390 platforms.Peter Jones2009-10-281-5/+7
| | | | | | This leaves the sshd support on the s390 intact and functional (testing needed), and at the same time add the ability to ssh in and get a terminal on non-s390 platforms.
* We no longer write out /etc/rpm/platform, so don't offer to upgrade it.Chris Lumens2009-06-011-1/+0
|
* Don't populate flags.cmdline with "True" values when no = is used.Peter Jones2009-04-291-1/+1
| | | | | | Since all tests are either flags.cmdline.has_key() or "if flags.cmdline.get()", we want this to be None when there's no equals sign, rather than True.
* Revert "Port the dlabel feature from RHEL (#489314)"David Cantrell2009-03-241-1/+0
| | | | | | | This reverts commit 16632332b3a49994edf0016a3c5c3200d32cf6ac. This patch calls doMultiMount(), which no longer exists. It also references ddFsTypes, which looks to not exist either.
* Port the dlabel feature from RHEL (#489314)Martin Sivak2009-03-241-0/+1
|
* Add a get() method to Flags, since it pretends to be a dictionary.Chris Lumens2009-03-051-0/+6
|
* Revert "Port the dlabel feature from RHEL5 bug #316481 into Fedora (#436951)"Jeremy Katz2009-01-081-1/+0
| | | | | | This reverts commit 89652b6fbe65e5e7922d743a99b07104d071ef42. This patch was not reviewed on the list and does not fix any emergency build breakage. Thus, per policy is being reverted.
* Port the dlabel feature from RHEL5 bug #316481 into Fedora (#436951)Martin Sivak2009-01-081-0/+1
|
* Add ibft flag to ease in testing.Hans de Goede2008-09-151-0/+1
| | | | | Forward port of rhel-5 patch from pjones, commit-id: 5a44a5a6bc90fdf056db1e9e2d4191703387c15f
* Expert mode was disabled in 2004. Remove it now.Chris Lumens2008-08-141-1/+0
|
* When there is text mode specified in the kickstart file, disable the vnc ↵Martin Sivak2008-07-211-0/+1
| | | | question (#455612)
* Remove old livecd flagJeremy Katz2008-06-301-1/+0
| | | | | | The livecd flag was for "I'm building a livecd", ie with kadischi, not for doing a livecd install. Keeping the old flag around was just confusing, especially as kadischi is no longer used/maintained
* Common GPLv2+ boilerplate on toplevel python source files.David Cantrell2007-12-171-6/+12
| | | | | | Updated all *.py files to have a uniform GPL boilerplate. Expanded copyright year ranges and listed authors (if they were in the comment section) under the Red Hat Author(s) section.
* Inform user about the arch mismatch and offer to upgrade rpm platformmsivak2007-10-261-0/+1
| | | | | | | | | | | | | | | | | | Bug #217132 2007-10-26 Martin Sivak <msivak@redhat.com> * backend.py (doRepoSetup): Update the platform file if necessary * dispatch.py: Add new step for detecting platform upgrade * flags.py (Flags): Add flag for controlling the rpm platform update * iutil.py (writeRpmPlatform): Now controlled by the updateRpmPlatform flag * upgrade.py: Add isUpgradingArch, queryUpgradeArch and add the upgradearchitecture step (#217132)
* Work around a quoting bug in pxelinux (#248170).Chris Lumens2007-10-191-1/+8
|
* Another attempt to enforce formatting of / on livecd installs.Chris Lumens2007-08-011-1/+2
|
* * anaconda (parseOptions): Add the --noipv4 and --noipv6 opts (#208334).David Cantrell2006-10-181-0/+2
| | | | | | | | | | | | | | | | | | | | | * anaconda (__main__): Set flags.useIPv4 and flags.useIPv6 to false if we receive one of the --noipv{4,6} options (#208334). * flags.py (Flags): Add useIPv4 and useIPv6 flags, default to True (#208334). * network.py (Network): Initialize self.useIPv4 and self.useIPv6 to flags.useIPv4 and flags.useIPv6 (#208334). * loader2/loader.c (doLoaderMain): After readNetConfig() call, set the noipv4 and noipv6 flags in loaderData (#208334). * loader2/loader.c (main): If noipv4 or noipv6 flag is set in the loaderData, add option to pass to anaconda (#208334). * loader2/net.c (readNetConfig): Set noipv4 and noipv6 flags in newCfg after configureTCPIP() call (#208334). * loader2/net.c (readNetConfig): After dialog window closes, copy the noipv4 and noipv6 flags from newCfg to cfg (#208334).
* 2006-09-20 Jeremy Katz <katzj@redhat.com>Jeremy Katz2006-09-201-0/+4
| | | | | | | * anaconda (Anaconda.setMethod): Allow passing --targetarch (#206881) * flags.py (Flags.__init__): Set targetarch as a flag * iutil.py (writeRpmPlatform): Use flag
* - turn mpath onPeter Jones2006-07-171-1/+1
|
* - anaconda (parseOptions): add flags for multipathPeter Jones2006-05-221-0/+1
| | | | | - flags.py (Flags): ditto - loader2/loader.c (parseCmdLineFlags): ditto
* 2006-05-01 Jeremy Katz <katzj@redhat.com>Jeremy Katz2006-05-021-0/+1
| | | | | | | | | * bootloader.py: Clean up imports (getBootloader): Use isolinuxBootloader for the livecd case. * anaconda (rootpath_cb): Allow using --rootpath=cd:/path to specify that we're doing a livecd. This is likely to change... * flags.py (Flags.__init__): Add livecd flag
* Create a dictionary in flags.py for storing /proc/cmdline. Nuke allChris Lumens2006-03-221-12/+25
| | | | references to /proc/cmdline from everywhere else in favor of this dict.
* 2006-02-09 Patrick Mansfield <patmans@us.ibm.com>Jeremy Katz2006-02-091-0/+1
| | | | | | | | | | | | | | | | * anaconda: Add handling of iscsi flag * flags.py: Add iscsi flag * installclass.py: Add iscsi step * dispatch.py: Add iscsi step. * gui.py: Add iscsi step. * text.py: Add iscsi step * instdata.py: Add iscsi object * iscsi.py: Add main iscsi code * iw/iscsi_gui.py: Add graphical iSCSI configuration * ui/iscsi-config.glade: Glade-file for iSCSI config * textw/iscsi_text.py: Add text mode iSCSI configuration * scripts/mk-images (SCSIMODS): Add iscsi modules * scripts/upd-instroot: Add iscsi tools
* 2005-12-15 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-12-151-1/+1
| | | | * flags.py (Flags.__init__): dmraid by default so that it gets tested
* 2005-11-17 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-11-171-1/+1
| | | | * flags.py (Flags.__init__): dmraid is off by default.
* - add dmraid flagPeter Jones2005-11-171-0/+1
|
* add flags.virtpconsole to be used with virtual physical consoles likeJeremy Katz2004-09-131-0/+5
| | | | | | hvc (ppc), hvsi (ppc), and altix (ia64). set up in init and carried throughout. (#131091, #130906, #131301)
* make rootpath work nicerjrb2004-08-231-0/+1
|
* New Improved SELinux handlingJeremy Katz2004-04-131-4/+15
| | | | | | | * default in constants.py * 'selinux' flag will key it on (if off by default) * turn on for selinux=1, off for selinux=0 * non-existence of selinuxfs will force off
* make selinux a full featured flagJeremy Katz2004-02-231-0/+12
|
* add autoscreenshot flagMike Fulbright2003-10-021-0/+1
|
* added vnc capabilityMike Fulbright2003-03-311-0/+1
|
* oh yeah goodbye reconfigMike Fulbright2002-02-081-1/+0
|
* autostep hackMatt Wilson2001-07-161-1/+1
|
* add flag for reconfig modeMike Fulbright2001-06-291-0/+1
|
* copyrightMatt Wilson2001-06-221-0/+13
|
* merge dispatch to HEADMatt Wilson2001-06-201-0/+25