summaryrefslogtreecommitdiffstats
path: root/cobbler/settings.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2006-09-21 16:23:34 -0400
committerJim Meyering <jim@meyering.net>2006-09-21 16:23:34 -0400
commita846ccb34ab5723bc4ecef309575aae1c2532f51 (patch)
treedc03ad71ff84f65e138656b864b2410b2507b965 /cobbler/settings.py
parent88e0254b48d8b454663a447453df7999b141dc6d (diff)
downloadthird_party-cobbler-a846ccb34ab5723bc4ecef309575aae1c2532f51.tar.gz
third_party-cobbler-a846ccb34ab5723bc4ecef309575aae1c2532f51.tar.xz
third_party-cobbler-a846ccb34ab5723bc4ecef309575aae1c2532f51.zip
- Initial batch of changes to support (a) dhcpd.conf templating and (b)
supporting alternative boot loader architectures (like Itanium).
Diffstat (limited to 'cobbler/settings.py')
-rw-r--r--cobbler/settings.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/cobbler/settings.py b/cobbler/settings.py
index 39d4393..304f748 100644
--- a/cobbler/settings.py
+++ b/cobbler/settings.py
@@ -35,7 +35,6 @@ class Settings(serializable.Serializable):
"""
self._attributes = {
"httpd_bin" : "/usr/sbin/httpd",
- "pxelinux" : "/usr/lib/syslinux/pxelinux.0",
"dhcpd_conf" : "/etc/dhcpd.conf",
"tftpd_bin" : "/usr/sbin/in.tftpd",
"server" : "localhost",
@@ -44,6 +43,11 @@ class Settings(serializable.Serializable):
"tftpd_conf" : "/etc/xinetd.d/tftp",
"tftpboot" : "/tftpboot",
"webdir" : "/var/www/cobbler",
+ "manage_dhcp" : 0,
+ "pxelinuxes" : {
+ "i386" : "/usr/lib/syslinux/pxelinux.0"
+ "ia64" : "/no/path/to/this/file/pxelinux.0"
+ }
}
def printable(self):