summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-06-10 17:31:27 -0400
committerMichael DeHaan <mdehaan@redhat.com>2008-06-10 17:31:27 -0400
commit0b2f9be58e07d01227d883f21db4a5af36181ff1 (patch)
treefbc764ff057442c1b8f730537b82e63dc5a3c1e7
parent808f53e2c8c137778c8c1beea27c1668e8786d6e (diff)
downloadthird_party-cobbler-0b2f9be58e07d01227d883f21db4a5af36181ff1.tar.gz
third_party-cobbler-0b2f9be58e07d01227d883f21db4a5af36181ff1.tar.xz
third_party-cobbler-0b2f9be58e07d01227d883f21db4a5af36181ff1.zip
Fix typo in replicate code, bump versions in case we want to do another maint release.
-rw-r--r--CHANGELOG3
-rw-r--r--cobbler.spec9
-rw-r--r--cobbler/action_replicate.py2
-rw-r--r--setup.py2
4 files changed, 11 insertions, 5 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 2e0d2ae..41e853a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,9 @@
Cobbler CHANGELOG
(all entries mdehaan@redhat.com unless noted otherwise)
+- Tue Jun 10 2008 - 1.0.3 (tentative)
+- Fix typo in replicate code
+
- Mon Jun 09 2008 - 1.0.2
- Fix mkdir invocation
- Fix error message output from failed kickstart rendering
diff --git a/cobbler.spec b/cobbler.spec
index ec38ae2..71c9de3 100644
--- a/cobbler.spec
+++ b/cobbler.spec
@@ -2,7 +2,7 @@
Summary: Boot server configurator
Name: cobbler
AutoReq: no
-Version: 1.0.2
+Version: 1.0.3
Release: 1%{?dist}
Source0: %{name}-%{version}.tar.gz
License: GPLv2+
@@ -190,8 +190,11 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT
%changelog
-* Mon Jun 04 2008 Michael DeHaan <mdehaan@redhat.com> - 1.0.2-1
-- Upsteram changes (see CHANGELOG)
+* Tue Jun 10 2008 Michael DeHaan <mdehaan@redhat.com> - 1.0.3-1
+- Upstream changes (see CHANGELOG)
+
+* Mon Jun 09 2008 Michael DeHaan <mdehaan@redhat.com> - 1.0.2-1
+- Upstream changes (see CHANGELOG)
* Tue Jun 03 2008 Michael DeHaan <mdehaan@redhat.com> - 1.0.1-1
- Upstream changes (see CHANGELOG)
diff --git a/cobbler/action_replicate.py b/cobbler/action_replicate.py
index ae3adc8..8938c5f 100644
--- a/cobbler/action_replicate.py
+++ b/cobbler/action_replicate.py
@@ -129,7 +129,7 @@ class Replicate:
needsync = False
for profile in remote_profiles:
if self.check_profile(profile):
- print 'Found profile %s.' % profilew['name']
+ print 'Found profile %s.' % profile['name']
self.add_profile(profile)
needsync = True
self.call_sync(needsync)
diff --git a/setup.py b/setup.py
index dc087d7..680f22c 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ import sys
from distutils.core import setup, Extension
import string
-VERSION = "1.0.2"
+VERSION = "1.0.3"
SHORT_DESC = "Network Boot and Update Server"
LONG_DESC = """
Cobbler is a network boot and update server. Cobbler supports PXE, provisioning virtualized images, and reinstalling existing Linux machines. The last two modes require a helper tool called 'koan' that integrates with cobbler. Cobbler's advanced features include importing distributions from DVDs and rsync mirrors, kickstart templating, integrated yum mirroring, and built-in DHCP/DNS Management. Cobbler also has a Python and XMLRPC API for integration with other applications.