summaryrefslogtreecommitdiffstats
path: root/cobbler/item_system.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Misc fixes to IA64 syncing. Bugs still to be resolved in naming elilo.conf ↵Michael DeHaan2006-09-211-1/+1
| | | | files the right thing.
* Variable typos.Michael DeHaan2006-09-211-2/+2
|
* ia64 boot fixes as a result of testing.Michael DeHaan2006-09-211-4/+4
|
* Naming cleanup of a few variables now that we're dealing with moreMichael DeHaan2006-09-211-1/+1
| | | | than pxelinux.0 (likely elilo.efi)
* - Initial batch of changes to support (a) dhcpd.conf templating and (b)Michael DeHaan2006-09-211-0/+20
| | | | supporting alternative boot loader architectures (like Itanium).
* Remove the xen_mac parameter on profile in favor of using the MAC asssigned ↵Michael DeHaan2006-09-191-2/+2
| | | | | | to the system and using koan on a per system basis.
* Add support for PXE default directory (cobbler system add --name=default ↵Michael DeHaan2006-07-211-0/+3
| | | | ...) which would previously try to resolve into an IP. We don't want that.
* Added templating support through new --ks_meta option which works like ↵Michael DeHaan2006-07-121-1/+5
| | | | --kopts. The parameter is a space delimited list of key=value pairs, which allows the variables entered to be evaluated through Cheetah. Thus kickstarts are now Cheetah templates. All templating errors are ignored so usage of a $ in a template is still legal where it doesn't reference a variable. Error ignoring should be finer grained and this does need some tests. Currently this only works for kickstarts on filesystems, and I'm not sure what the behavior for http and nfs should be. Anyhow, fairly useful stuff.
* 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-5/+4
| | | | | | exception cleanup.
* Adding exception handling to remove the problem of propogating error codes ↵Michael DeHaan2006-05-081-4/+4
| | | | all the way up the stack. Still not quite super-consistant, but getting there. Util functions still return true/false since they just ask questions, but API functions will throw errors to ensure they are being dealt with. Main CLI class needs to take advantage of this fact and become simpler. Tests are already modified to detect new exceptions with one exception :)
* Interim checkin while straightening out exceptions. The last_error bit ↵Michael DeHaan2006-05-081-4/+3
| | | | | | | reminded me of the thing I hated most about Microsoft SDK/DDK programming (that being, last_error and inconsistant error handling), so it had to go.
* PyChecker.Michael DeHaan2006-05-081-1/+1
|
* Unit tests pass again.Michael DeHaan2006-05-081-0/+7
|
* Removed trailing whitespaceMichael DeHaan2006-05-051-1/+1
|
* Interim commit during refactoring. Pretty broken as a result of some ↵Michael DeHaan2006-05-051-0/+67
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.