| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
Turns out we don't want to do this because it'll result in the default autopart
scheme getting used regardless of what other partitioning commands are
specified.
|
|
|
|
| |
More syntax errors / traceback fixes.
|
|
|
|
|
|
| |
This doesn't atually mean kickstart allows you to specify partitions and
clearpart. However, you can leave out partitioning information from your
kickstart file, specify it from the UI, and get an install to complete.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
exception.py:
- Remove unused partedUtils import.
- Collect things from storage, not partitions.
gui.py:
- exceptionDisks is in storage now, not diskset.
installclasses/rhel.py:
installclasses/fedora.py:
- setDefaultPartitioning take storage arg, not partitions.
iw/autopart_type.py:
- Find things in storage, not partitions.
iw/bootloader_main_gui.py:
iw/osbootwidget.py:
- Remove unused partedUtils import.
- Find fsset in storage now.
- Use storage, not diskset, for iterating over disks/partitions.
iw/lvm_dialog_gui.py:
- Fix several typos from the original storage update.
iw/partition_gui.py:
- Find unusedMDMembers in storage, not partitions.
iw/partitionui_helpers_gui.py:
- Use StorageDevice.minSize,maxSize for resize limits.
- Update doUIRAIDLVMChecks to use new storage module.
packages.py:
- Use new storage module to list vgs for selinux hack.
storage/__init__.py:
- Fix FSSet.createSwapFile so it creates the file on the
correct device.
storage/iscsi.py:
- Use new storage module to identify iscsi disks.
textw/partition_text.py:
textw/upgrade_text.py:
- Initial update to use new storage module.
yuminstall.py:
- Use storage module to find space for upgrade transaction.
- Use storage module to locate protected partitions to mount
in doPreInstall.
|
|
|
|
|
|
|
| |
For Fedora, this means we will not allow upgrades of detected root filesystems
more than two releases old, or "upgrading" a newer install with an older one.
For RHEL, we don't yet know what to do so just allow things to continue as they
always have. Using "upgradeany" still circumvents this check.
|
|
|
|
| |
Various packaging fixed from review (#225246)
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Prerelease version of Fedora sometimes get version numbers in .treeinfo or
.buildstamp like 10-Beta. However, this version does not exist in bugzilla so
we get an error trying to save the bug. This could also happen in respins.
So, grab a list of all the versions that are valid for the product out of
bugzilla and make sure productVersion exists. If not, either use the
develVersion from the installclass or just use the last one out of the the
list.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Different products and distributions could support completely different
bug filing system (or none at all, for that matter) so support an
abstraction that allows us to use multiple kinds of bug files. We still
need to commit that abstraction somewhere and also make sure we allow full
customization through the product.img.
|
|
|
|
|
| |
We don't do things based on the method string anymore, so explicitly
specify that we're doing a livecd based install
|
| |
|
| |
|
|
|
|
| |
* po/sk.po: Typo fix.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
All Makefiles have a standard RH license boilerplate. Existing
copyright ranges have been expanded out to list each year, since you
are supposed to do that for license boilerplates (ranges aren't
valid). Any existing authors mentioned are listed under the Red Hat
Author(s) part.
|
|
|
|
|
|
| |
Remove method references from the Anaconda object, along with various support
functions that import methods and return instances of methods. This also
removes method instances from the backend.
|
| |
|
|
|
|
| |
- bump version
|
|
|
|
|
| |
* installclasses/fedora.py (InstallClass): Use mirror list for
additional software
|
|
|
|
|
|
|
|
|
| |
* scripts/upd_instroot: Added packages and files so man pages work
in rescue. BZ#243443.
* iw/task_gui.py: Setup the additionall Everythin Repo. BZ#254014.
* installclasses/fedora.py: User can choose additional repo.
BZ#254014
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
protected partitions (#220331)
* autopart.py (doClearPartAction): clear all non-protected partitions
from disks that contain a protected partition IFF initAll is set
* partedUtils.py (hasProtectedPartitions): new method to check if a
drive contains protected partitions
* packages.py (writeRegKey): method to write out regkey
* dispatch.py: add writeregkey step
* installclass.py (BaseInstallClass): add regkey fields and step
* instdata.py: include regkey settings in anaconda-ks.cfg
* packages.py (regKeyScreen): allow access to regkey screen while
moving backwards (#219361)
* installclasses/rhel.py: add support for real regkeys (via instnum)
|
| |
|
|
|
|
| |
will handle that for us.
|
|
|
|
|
|
| |
* anaconda.spec: Bump version.
* installclasses/fedora.py: No extra repos while things are in flux
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* syslogd.py (InstSyslog.start): Ensure that we have a syslogd or
don't try to start. Otherwise, we end up hanging things
* yuminstall.py (YumBackend.__init__): yum installs can do package
selection
* livecd.py: Add live CD image copy backend and install method.
* installclasses/fedora.py: Handle installclass API changes; allow
livecd method
* installclass.py (BaseInstallClass.setSteps): Take anaconda
instead of dispatch as an argument; use so that the backend
upgrade allowing + package selection can work
(BaseInstallClass.setDefaultPartitioning): Make it easier to
default to no-LVM
* kickstart.py (Kickstart.setSteps): Tweak for calling change
* upgradeclass.py (InstallClass.setSteps): Likewise.
* installclasses/rhel.py (InstallClass.setSteps): Likewise.
* anaconda: Pass anaconda to instClass.setSteps; don't depend on
the existence of /mnt/runtime/... with x_already_set
* backend.py (AnacondaBackend.__init__): Let the backend define
whether or not upgrades are supported
(AnacondaBackend.doPreInstall): postInstall kills the log, start
it in the pre
(AnacondaBackend.initLog): Ensure the dir we want to use exists
(writeConfiguration): Write instdata before backend bits
|
|
|
|
|
|
|
| |
* installclasses/custom.py: Remove obsolete file
* installclasses/personal_desktop.py: Likewise.
* installclasses/server.py: Likewise.
* installclasses/workstation.py: Likewise.
|
|
|
|
|
|
|
|
|
|
|
|
| |
* installclasses/fedora.py: Implement getMethod/getBackend
* installclasses/rhel.py: Likewise.
* anaconda (Anaconda.setMethod): Use installclass to determine method
(Anaconda.setBackend): And backend
* installclass.py (BaseInstallClass.getMethod): Add a method to
parse the method str and return an InstallMethod constructor
(BaseInstallClass.getBackend): For backend as well
|
|
|
|
| |
we can display them (#212511)
|
|
|
|
| |
for yum.
|
|
|
|
|
| |
* installclasses/rhel.py (InstallClass.handleRegKey): Nuke D as
it's been merged
|
|
|
|
|
|
|
|
|
| |
* installclasses/fedora.py (InstallClass._get_description): Return
the translated text as the description (#206620).
* iw/task_gui.py (TaskWindow._createTaskStore): Fix translations
to show up (#206620)
* ui/tasksel.glade: Force width wider so that things fit better
|
|
|
|
| |
* installclasses/rhel.py: Disable extra repos
|
|
|
|
| |
* installclasses/rhel.py: Some text tweaks
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* iw/task_gui.py: Rework so that we can enable/disable optional
repos per install class as well as see what repos have been added
* ui/tasksel.glade: Change things up a little bit
* installclasses/fedora.py: Tweak description, add Extras as an
additional repo
* yuminstall.py (AnacondaYum.doConfigSetup): Allow for additional,
not enabled by default repos to be set up.
* installclass.py (repos): Add not-default repos
|
|
|
|
|
| |
* installclasses/rhel.py (InstallClass.handleRegKey): Add a little
bit of logging per jlaska's request
|
|
|
|
|
| |
* installclasses/rhel.py (InstallClass.handleRegKey): More tweaks
based on what really exists
|
|
|
|
|
| |
* installclasses/rhel.py (InstallClass.handleRegKey): Add a few
more options, check for validity of option (#201738)
|
|
|
|
|
|
|
| |
* installclasses/rhel.py (InstallClass.__init__): base repopath
didn't really change
* anaconda.spec: Bump version.
|
|
|
|
|
|
| |
* installclasses/rhel.py (InstallClass.__init__): Fix for changed
base repopath
(InstallClass.handleRegKey): Add more options
|