summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG3
-rw-r--r--cobbler.spec5
-rw-r--r--cobbler/cobbler_msg.py2
-rw-r--r--setup.py2
4 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index a736df2..cbea748 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,9 @@
Cobbler CHANGELOG
(all entries mdehaan@redhat.com unless noted otherwise)
+* Wed Oct 11 2006 - 0.2.4-1
+- Changes to make things work with python 2.3 (RHEL4, etc)
+
* Mon Oct 9 2006 - 0.2.3-1
- Cobbler now creates a profile and system listing (YAML) in /var needed
by the next version of koan (which will be 0.2.1)
diff --git a/cobbler.spec b/cobbler.spec
index 0782b41..3fbdd95 100644
--- a/cobbler.spec
+++ b/cobbler.spec
@@ -2,7 +2,7 @@
Summary: Boot server configurator
Name: cobbler
-Version: 0.2.3
+Version: 0.2.4
Release: 1%{?dist}
Source0: %{name}-%{version}.tar.gz
License: GPL
@@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT
%doc AUTHORS CHANGELOG NEWS README COPYING
%changelog
+* Wed Oct 11 2006 Michael DeHaan <mdehaan@redhat.com> - 0.2.4-1
+- Upstream changes to work with python 2.3
+
* Mon Oct 9 2006 Michael DeHaan <mdehaan@redhat.com> - 0.2.3-1
- Upstream features (see CHANGELOG) & URL update
diff --git a/cobbler/cobbler_msg.py b/cobbler/cobbler_msg.py
index ccb8f98..48e357b 100644
--- a/cobbler/cobbler_msg.py
+++ b/cobbler/cobbler_msg.py
@@ -41,7 +41,7 @@ _msg_table = {
"need_to_fix" : "the following potential problems were detected:",
"need_perms" : "cobbler could not access %s",
"need_perms2" : "cobbler could not copy %s to %s",
- "no_dhcpd" : "cobbler couldn't find dhcpd, try 'yum install dhcpd'",
+ "no_dhcpd" : "cobbler couldn't find dhcpd, try 'yum install dhcp'",
"no_bootloader" : "missing 1 or more bootloader files listed in /var/lib/cobbler/settings",
"no_tftpd" : "cobbler couldn't find tftpd, try 'yum install tftpd'",
"no_dir" : "cobbler couldn't find %s, please create it",
diff --git a/setup.py b/setup.py
index 8e710c7..a7f7785 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ import sys
from distutils.core import setup, Extension
import string
-VERSION = "0.2.3"
+VERSION = "0.2.4"
SHORT_DESC = "Boot server configurator"
LONG_DESC = """
Cobbler is a command line tool for simplified configuration of boot/provisioning servers. It is also accessible as a Python library. Cobbler supports PXE, Xen, and re-provisioning an existing Linux system via auto-kickstart. The last two modes require 'koan' to be run on the remote system.