summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Adding some fields to settings and misc cleanupMichael DeHaan2008-06-036-16/+18
|
* A previous edit (not released) removed a defattr in the specfile, adding it ↵Michael DeHaan2008-06-021-0/+4
| | | | back.
* Make manpage reference correct settings file path for 1.0, which is ↵Michael DeHaan2008-05-302-7/+8
| | | | /etc/cobbler, not /var/lib/cobbler
* changelog updateMichael DeHaan2008-05-301-0/+1
|
* No longer cashing snippets as we want things to be very dynamic.Michael DeHaan2008-05-301-6/+13
|
* This change makes triggers that are registered for addition and removal of ↵Michael DeHaan2008-05-303-9/+8
| | | | objects to now run when they are renamed or copied. In the case of a copy, only the add triggers are re-run against the new name. In the case of rename, first the add triggers are called on the newname, then the remove triggers are called on the oldname as that is how things are implemented. In the case of renaming an object that has child objects, the child objects are updated, so the add triggers will then be called on each to notify that those objects themselves have changed, this last bit of the behavior I'm not sure if it's a good thing or not, though we can refine it if that is not desirable.
* utils.get_kickstart_templates now returns only files, so that it will not ↵Michael DeHaan2008-05-302-2/+5
| | | | | | encounter problems if the directory is under version control.
* Added a condrestart for Apache in the rpm post to ensure that any changes to ↵Michael DeHaan2008-05-291-0/+2
| | | | | | the mod python handlers are applied.
* Default arches to 'i386' to be consistent with the treesMichael DeHaan2008-05-295-14/+25
|
* Merge branch 'master' into develMichael DeHaan2008-05-293-4/+16
|\ | | | | | | | | | | | | | | Conflicts: CHANGELOG cobbler.spec setup.py
| * Do not own tftpboot, but create subdirs as needed automatically.Michael DeHaan2008-05-294-4/+13
| |
| * changelog updateMichael DeHaan2008-05-291-0/+3
| |
| * Fix bug in action_check related to inherited profiles, repos, and a misformattedMichael DeHaan2008-05-291-3/+4
| | | | | | | | warning.
* | Make check understand profile inheritance w/ reposMichael DeHaan2008-05-291-3/+4
| |
* | Fix devel branch versionsMichael DeHaan2008-05-282-2/+2
| |
* | Make URLs consistentMichael DeHaan2008-05-281-2/+2
| |
* | Bump version of new devel branchMichael DeHaan2008-05-282-2/+8
|/
* release bump needed for build systemMichael DeHaan2008-05-281-2/+2
|
* Remove noise from previous mergeMichael DeHaan2008-05-281-1/+0
|
* Release bump for 1.0Michael DeHaan2008-05-282-0/+6
|
* Merge branch 'devel'Michael DeHaan2008-05-28143-3156/+6226
|\ | | | | | | | | | | | | | | Conflicts: cobbler.spec cobbler/item_system.py cobbler/webui/master.py
| * doc itemMichael DeHaan2008-05-271-1/+1
| |
| * doc itemMichael DeHaan2008-05-271-1/+1
| |
| * doc itemMichael DeHaan2008-05-271-1/+1
| |
| * Fix to make serializer look in the right place, also removed a debugMichael DeHaan2008-05-164-7/+6
| | | | | | | | print.
| * The settings file is now /etc/cobbler/settings, and cobbler's command lineMichael DeHaan2008-05-1611-28/+33
| | | | | | | | | | will warn the user the old file is no longer in use and ask them to delete it before proceeding.
| * Found out our config file supports comments (hooray) and added a bunch ↵Michael DeHaan2008-05-162-2/+137
| | | | | | | | explaining what all of the settings do. Should have done this long ago but glad to have it!
| * Cleaner error messages on kickstart rendering problems.Michael DeHaan2008-05-151-1/+1
| |
| * Add extra logging if an error is encountered while rendering a kickstartMichael DeHaan2008-05-154-13/+16
| |
| * Checked in architecture diagram source, run "make graphviz" to build it.Michael DeHaan2008-05-152-0/+122
| |
| * Added the ability to undefine a symbol that is defined in a parent object.Michael DeHaan2008-05-142-0/+19
| | | | | | | | | | | | | | | | | | This means that if a kernel option is set for a profile, and you want it unset in a child system, you can say --kopts='!foo' to undefine the foo. Similarly you can add symbols and undefine others at the same time... --kopts='bar !foo baz=3' and so on. This is relatively fringe usage but was previously not possible.
| * Make template finder code (used by check and webapp) ignore kickstarts that ↵Michael DeHaan2008-05-141-2/+4
| | | | | | | | are not on the filesystem and are therefore real kickstarts or URLs that generate them, not actual templates.
| * Since it's common to want to reference the name of the profile in a ↵Michael DeHaan2008-05-143-1/+14
| | | | | | | | | | | | | | template, and that changes whether the rendering is a per-profile or per-system kickstart, I've added three new variables to make things easier: "distro_name", "profile_name", and "system_name" which show up in the templates automatically in addition to the existing "distro", "profile", and "name" you get for a system, or "distro" and "name" for profile. This is more consistant and easier to use in the templating language.
| * Change the way error checking works around NFS read errors (root squash)Michael DeHaan2008-05-133-7/+17
| |
| * If for some reason the user has defined a system where the first interface ↵Michael DeHaan2008-05-132-5/+7
| | | | | | | | record is blank and the second is not, still build the PXE tree based on the second record.
| * Consolidate various repo related warnings under cobbler check and clean up ↵Michael DeHaan2008-05-137-17/+53
| | | | | | | | prints elsewhere.
| * Allows cobbler system kickstart to be reset by setting them to "", "delete", ↵Michael DeHaan2008-05-132-0/+4
| | | | | | | | or None (the last via the API). This allows the system to use the profile's kickstart setting as expected.
| * Fix find test.Michael DeHaan2008-05-131-1/+1
| |
| * Added code to cobbler check to see if any templates are still using the defaultMichael DeHaan2008-05-135-11/+34
| | | | | | | | password, and if so, to warn about them.
| * Added code to cobbler check to look for httpd_can_network_connect boolean if ↵Michael DeHaan2008-05-122-0/+15
| | | | | | | | SELinux is enabled.
| * keep changelog up to dateMichael DeHaan2008-05-121-0/+1
| |
| * Make duplicate mac checking work in more places, nicer error when ↵Michael DeHaan2008-05-123-9/+14
| | | | | | | | encountering rootsquash.
| * Patch for replicate error handling + docsMichael DeHaan2008-05-123-1/+12
| |
| * Apply patch to remove anti-createrepo conditions, bump version.Michael DeHaan2008-05-124-3/+9
| |
| * Release bump for test releaseMichael DeHaan2008-05-093-4/+4
| |
| * Added some additional links for kickstart viewing/editing to the ↵Michael DeHaan2008-05-096-7/+46
| | | | | | | | profile/system web pages
| * Fixes for webapp new fieldsMichael DeHaan2008-05-092-2/+3
| |
| * Fixes for virt overrides on system objects.Michael DeHaan2008-05-095-26/+24
| |
| * Apply patch to rework bind zone handling.Michael DeHaan2008-05-092-48/+74
| |
| * Add missing file.Michael DeHaan2008-05-091-0/+158
| |