summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2006-10-17 16:33:45 -0400
committerJim Meyering <jim@meyering.net>2006-10-17 16:33:45 -0400
commita1c4c4f24b1d0beb5cf7e6b07e36ab95626ac585 (patch)
treeaa316523405d30706036c61c9c814a964a17b116
parent6e4c8456fe7e11595593a2568c10653dedc287f4 (diff)
downloadthird_party-cobbler-a1c4c4f24b1d0beb5cf7e6b07e36ab95626ac585.tar.gz
third_party-cobbler-a1c4c4f24b1d0beb5cf7e6b07e36ab95626ac585.tar.xz
third_party-cobbler-a1c4c4f24b1d0beb5cf7e6b07e36ab95626ac585.zip
Bumping rev for no-Cheetah build.
-rw-r--r--CHANGELOG4
-rw-r--r--cobbler.spec6
-rw-r--r--cobbler/action_sync.py2
-rw-r--r--setup.py2
4 files changed, 10 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index d0bbf1e..892e596 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,10 @@
Cobbler CHANGELOG
(all entries mdehaan@redhat.com unless noted otherwise)
+* Tue Oct 17 2006 - 0.2.6-1
+- Removing Cheetah and replacing w/ simpler templating system
+- Don't delete localmirror on sync
+
* Mon Oct 16 2006 - 0.2.5-1
- New "import" feature for rsync:// mirrors and filesystem directories
- Manpage clarification
diff --git a/cobbler.spec b/cobbler.spec
index 8834b2f..1eac143 100644
--- a/cobbler.spec
+++ b/cobbler.spec
@@ -2,7 +2,7 @@
Summary: Boot server configurator
Name: cobbler
-Version: 0.2.5
+Version: 0.2.6
Release: 1%{?dist}
Source0: %{name}-%{version}.tar.gz
License: GPL
@@ -10,7 +10,6 @@ Group: Applications/System
Requires: python >= 2.3
Requires: httpd
Requires: tftp-server
-Requires: python-cheetah
Requires: pexpect
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
BuildArch: noarch
@@ -56,6 +55,9 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT
%changelog
+* Tue Oct 17 2006 Michael DeHaan <mdehaan@redhat.com> - 0.2.5-1
+- Upstream changes (see CHANGELOG), includes removing Cheetah as a require
+
* Mon Oct 16 2006 Michael DeHaan <mdehaan@redhat.com> - 0.2.5-1
- Upstream features and bugfixes (see CHANGELOG)
- Packaged additional kickstart file and specfile cleanup
diff --git a/cobbler/action_sync.py b/cobbler/action_sync.py
index e1c7de2..23e5660 100644
--- a/cobbler/action_sync.py
+++ b/cobbler/action_sync.py
@@ -144,7 +144,7 @@ class BootSync:
}
for x in metadata.keys():
template_data = template_data.replace("$%s" % x, metadata[x])
- self.tee(f1,str(t))
+ self.tee(f1,template_data)
self.close_file(f1)
def configure_httpd(self):
diff --git a/setup.py b/setup.py
index 1ed9eb3..f71f78f 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ import sys
from distutils.core import setup, Extension
import string
-VERSION = "0.2.5"
+VERSION = "0.2.6"
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.