summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG3
-rw-r--r--cobbler.spec6
-rw-r--r--cobbler/action_sync.py2
-rw-r--r--setup.py2
4 files changed, 10 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index a5ee47f..08f9fcd 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,9 @@
Cobbler CHANGELOG
(all entries mdehaan@redhat.com unless noted otherwise)
+* Mon Feb 19 2007 - 0.4.2
+- Fix bug in "cobbler system remove"
+
* Mon Feb 19 2007 - 0.4.1
- Bundle menu.c32 for older distros
- Unbundle Cheetah as it's available at http://www.python.org/pyvault/centos-4-i386/
diff --git a/cobbler.spec b/cobbler.spec
index 6900a12..81fbccd 100644
--- a/cobbler.spec
+++ b/cobbler.spec
@@ -2,7 +2,7 @@
Summary: Boot server configurator
Name: cobbler
-Version: 0.4.1
+Version: 0.4.2
Release: 0%{?dist}
Source0: %{name}-%{version}.tar.gz
License: GPL
@@ -105,9 +105,13 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT
%changelog
+* Mon Feb 19 2007 Michael DeHaan <mdehaan@redhat.com> - 0.4.2-0
+- Upstream changes (see CHANGELOG)
+
* Mon Feb 19 2007 Michael DeHaan <mdehaan@redhat.com> - 0.4.1-0
- Bundles menu.c32 (syslinux) for those distros that don't provide it.
- Unbundles Cheetah since it's available at http://www.python.org/pyvault/centos-4-i386/
+- Upstream changes (see CHANGELOG)
* Mon Feb 19 2007 Michael DeHaan <mdehaan@redhat.com> - 0.4.0-1
- Upstream changes (see CHANGELOG)
diff --git a/cobbler/action_sync.py b/cobbler/action_sync.py
index a728865..e243afa 100644
--- a/cobbler/action_sync.py
+++ b/cobbler/action_sync.py
@@ -830,7 +830,7 @@ class BootSync:
if os.path.isfile(path):
return self.rmfile(path)
else:
- return shutil.rmtree(path,ignore_errors=False)
+ return shutil.rmtree(path,ignore_errors=True)
except OSError, ioe:
traceback.print_exc()
if not ioe.errno == errno.ENOENT: # doesn't exist
diff --git a/setup.py b/setup.py
index 0098fed..b0eb0be 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ import sys
from distutils.core import setup, Extension
import string
-VERSION = "0.4.1"
+VERSION = "0.4.2"
SHORT_DESC = "Boot and update server configurator"
LONG_DESC = """
Cobbler is a command line tool for configuration of boot/provisioning, and update servers which is also accessible as a Python library. Cobbler supports PXE, provisioning virtualized images, and reinstalling machines that are already up and running (over SSH). The last two modes require a helper tool called 'koan' that integrates with cobbler. Cobbler's advanced features include importing distributions from rsync mirrors, kickstart templating, integrated yum mirroring (and linking repository setup with kickstarts), plus managing dhcpd.conf.