summaryrefslogtreecommitdiffstats
path: root/cobbler/settings.py
Commit message (Collapse)AuthorAgeFilesLines
* Some initial work on kerberos authentication via a helper program, some work ↵Michael DeHaan2007-12-051-0/+1
| | | | | | on making the API have access to the log files and logging everything done there. The logging work, as well as kerb testing, are incomplete at this point, though authn_configfile works fine.
* Slight changes to post install triggers patch, namely adding some underscores.Michael DeHaan2007-11-291-1/+1
|
* Initial application of Tim V's patch to enable post install triggers.Michael DeHaan2007-11-291-0/+1
|
* Removing docs on yum_core_mirror_from_server (off by default), now ↵Michael DeHaan2007-11-021-1/+1
| | | | explaining yum_post_install_mirror (which is on by default, and only slightly different).
* Since some versions of yumdownloader don't support --resolve, allow people ↵Michael DeHaan2007-11-011-1/+2
| | | | | | | | | to remove it by moving it to the configuration file. By default, it will be there, but this provides a fix for those running OS's with an old version of yum/yumdownloader. If -resolve is not in settings, --rpmlist on "cobbler repo add" needs to include all dependencies for the packages listed, which could be a rather long list.
* Various changes to allow for increased performance in the WebUI and in ↵Michael DeHaan2007-10-171-9/+0
| | | | | | saving state, plus a fix to import that keeps from creating extra yum repo entries for various distros.
* Added profile virt-bridge setting to the settings fileMichael DeHaan2007-10-101-0/+1
|
* Permissions cleanup and moving settings to be packaged in the RPM.root2007-09-141-0/+11
|
* Providing for a read-write XMLRPC API, off by default, set xmlrpc_rw_enabled ↵Michael DeHaan2007-09-101-0/+2
| | | | | | to 1 in settings to enable. Currently no methods implemented other than test, user validation is a stub.
* Further work on interchangeable backends. Rather than keeping the config fileroot2007-09-051-6/+3
| | | | | | | | | | | | | | format choice in settings (which is something of a Catch-22 situation), this may end up being a config file setting in /etc. Module loaders work and still default to yaml, though I've coded up a sample simple_json serializer that will be functional if users install simple-json. This is just demoware, JSON isn't replacing yaml and is (at least in this case) not as readable because of the way it escapes slashes. This is primarily to enable future work to integrate with other config file formats, such as possibly getting some of the system info from LDAP. Possibly.
* Working on pluggable serializers.root2007-09-051-4/+4
|
* removed deprecated enchant function/module (just use SSH!), config file cleanup.root2007-09-051-27/+31
|
* Implement PXE boot loop prevention feature using a CGI script that speaks to ↵Michael DeHaan2007-08-031-1/+2
| | | | | | a special function in cobblerd.
* Added a SNIPPET::foo feature which can do the equivalent of %include in ↵Michael DeHaan2007-07-271-0/+1
| | | | | | | | | kickstart without the need for a wget and http hosting. Snippets live in /var/lib/cobbler/snippets -- Cobbler ships with only one snippet now (as a demo), though users can create as many as they want.
* Set default virt type to autodetect.Michael DeHaan2007-07-251-1/+1
|
* Adding plumbing in cobbler for --virt-path and --virt-type options.Michael DeHaan2007-07-121-1/+2
|
* Begining of i18n of cobbler. Tests pass, works with English. Need to testMichael DeHaan2007-05-291-3/+3
| | | | | | | translation function and run manual testing to ensure no functional errors in other places (such as import). cobbler_msg (strings file) has been removed.
* Starting to add i18n to cobbler using rhplMichael DeHaan2007-05-251-0/+1
|
* Add support for dnsmasq as an alternative to ISC dhcpd.Michael DeHaan2007-05-241-0/+3
| | | | | Also add --hostname option to "cobbler system add" for dnsmasq DNS control features.
* Changes cobbler_syslogd to cobblerd, and this new daemon now offers koanMichael DeHaan2007-04-191-0/+1
| | | | | info over XMLRPC, allowing koan to stop needing to grok YAML. Older versions of koan will remain compatible over standard http://.
* Turning off core-repo mirror feature by default, as most enterpriseMichael DeHaan2007-04-161-1/+1
| | | | | | | | deployments may not want this behavior, and it is not ideal with RHN setups. Changed manpage docs appropriately. Also fixing bug where source_repo detection went up one directory to high...
* Doc cleanup.Michael DeHaan2007-04-051-21/+22
|
* Ongoing work for 0.4.4 -- misc tweaks/fixes, and continuation on the ↵Michael DeHaan2007-03-221-2/+0
| | | | | | | kernel-parameters-get-shorter effort as well as templating and import features. Plus some random things, like case insensitive paths and some additional argument checking.
* Most of these diffs come from directory reorg/cleanup, though the main ↵Michael DeHaan2007-03-191-2/+1
| | | | feature here is the start of a better --import command that creates significantly shorter paths and can work more reliably on mounted DVD images (losetup or otherwise). Detection of kickstarts based on paths needs to be augmented by additional means for this to really work. However, changes going in here (and still more to come) result in cleaner names for imported profiles, and substantially shorter kernel option command lines, which is needed to keep under the 255 limit. There is also some work here going in to template out all of the files for PXE, reducing the amount of code in action_sync and also making PXE setups much more customizable (menu choices, titles, random parameters, ipappend 2, etc) without patching the source. "tree" on import is also attached now to the distro, not the profile. So, whew, that's a lot.
* Converting storage for template parameters, kernel options, and repo lists ↵Michael DeHaan2007-02-141-1/+13
| | | | | | | (basically anything that's not really a string or a number) to a list or hash, as appropriate. This will allow the cobbler API to accept list/hash input as appropriate in addition to strings, allowing for more advanced use of the templating engine. This also extends more power to the user to add their own entries in /var/lib/cobbler files for ksmeta, as opposed to having to enter in --ksmeta options on the command line, which previously did not tolerate newlines. All of this is backwards compatible with the old format (both should load fine). Files will convert over to the new format once any add commands are run.
* Work towards implementation of optional integrated "light" sync support, ↵Michael DeHaan2007-02-011-1/+2
| | | | | | which is enabled by default in /var/lib/cobbler/settings. Users of the API will need to use the with_copy=True and with_delete=True parameters to initiate this behavior. As mentioned in the previous commit, sync() still needs to be run at least once prior to any add commands using this feature.
* Added syslog watcher script.mdehaan@mdehaan.rdu.redhat.com2007-01-221-1/+2
| | | | Packaging + parsing still TBA.
* Merge 247:06e34f3b1f36David Lutterkort2006-10-261-1/+1
|
* Merge 243:1f764e5dd1ccDavid Lutterkort2006-10-251-18/+26
|
* test code no longer overwrites user settings in /var/lib/cobblerMichael DeHaan2006-10-161-1/+6
|
* Fixes to dhcpd.conf and Itanium IA64 support as a result of lab tests.Michael DeHaan2006-10-061-1/+2
|
* - Update NEWS to reflect experimental nature of new dhcpd.conf and PXEMichael DeHaan2006-09-281-0/+1
| | | | | | features. - More work on the "remote push" ability for cobbler to modify running metal.
* Package elilo for IA64Michael DeHaan2006-09-221-1/+2
|
* ia64 boot fixes as a result of testing.Michael DeHaan2006-09-211-2/+2
|
* Naming cleanup of a few variables now that we're dealing with moreMichael DeHaan2006-09-211-2/+1
| | | | than pxelinux.0 (likely elilo.efi)
* - Initial batch of changes to support (a) dhcpd.conf templating and (b)Michael DeHaan2006-09-211-1/+5
| | | | supporting alternative boot loader architectures (like Itanium).
* - modified Cobbler to keep tftp data in /tftpboot and web data in /var/www ↵Michael DeHaan2006-09-131-0/+1
| | | | | | | | | to play nicer with SELinux systems (Apache couldn't serve out of /tftpboot before). - still need to test on SELinux config to see that chcon doesn't need to be called - still need to verify koan is still happy (not expecting any suprises there). - in the end, this should not affect koan or other client tools as the URLs are preserved
* Added licensing and RH copyright. Pychecker (once again). Fixed one unit ↵Michael DeHaan2006-05-111-0/+8
| | | | test where I changed a command line syntax.
* Simplified the command line, made a better 'list' function, some string and ↵Michael DeHaan2006-05-091-0/+5
| | | | | | exception cleanup.
* More pychecker. More comments.Michael DeHaan2006-05-081-2/+0
|
* PyChecker.Michael DeHaan2006-05-081-3/+17
|
* Unit tests pass again.Michael DeHaan2006-05-081-2/+9
|
* Interim commit during refactoring. Pretty broken as a result of some ↵Michael DeHaan2006-05-051-9/+12
| | | | cleanup but it will get straightened out very soon. The main thing I'm doing here is to remove backreferences from the object tree and make the API simpler, so that folks using the API screw up less. This means making the CLI code simpler as well. The serializer has also been overhauled so it's not as much bolted on, although I have some fixing to do to make it work entirely correctly. Wanted to check all of this in case someone decided to patch something else, making diffing really complex in the interim. I'd recommend not patching anything else to this code as I'm not close to done, really.
* Interim commitMichael DeHaan2006-05-051-1/+7
|
* Interim refactoring commitMichael DeHaan2006-05-051-0/+34