summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG34
-rw-r--r--NEWS12
-rw-r--r--README5
-rw-r--r--cobbler.spec6
-rw-r--r--setup.py2
5 files changed, 56 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
index 0000000..22bcf2f
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,34 @@
+Cobbler CHANGELOG
+
+* Fri Sep 22 2006 - 0.2.0-1
+- New dhcp.d conf management features
+- IA64 support
+- dhcpd.conf MAC & hostname association features
+
+* Thr Sep 21 2006 - 0.1.1-8
+- (RPM) Added doc files to %doc, removed INSTALLED_FILES
+
+* Wed Sep 20 2006 - 0.1.1-7
+- Split HTTP and TFTP content to seperate directories
+ to enable running in SELinux targetted/enforcing mode.
+- Make the Xen MAC address a property of a system, not a profile
+- Misc. fixes, mainly along the error path
+
+* Fri Sep 15 2006 - 0.1.1-6
+- Make koan own it's directory, add GPL "COPYING" file.
+
+* Wed Aug 16 2006 - 0.1.1-5
+- Spec file tweaks only for FC-Extras
+
+* Thu Jul 20 2006 - 0.1.1-4
+- Fixed python import paths in yaml code, which errantly assumed yaml was installed as a module.
+
+* Wed Jul 12 2006 - 0.1.1-3
+- Added templating support using Cheetah
+
+* Thu Jul 9 2006 - 0.1.0-2
+- Fedora-Extras rpm spec tweaks
+
+* Tue Jun 28 2006 - 0.1.0-1
+- rpm genesis
+
diff --git a/NEWS b/NEWS
index e69de29..cec8d27 100644
--- a/NEWS
+++ b/NEWS
@@ -0,0 +1,12 @@
+0.1.2
+
+New PXE features
+
+Cobbler now contains an experimental dhcpd.conf templating feature.
+Read the manpage, and if you want to use it, back up your existing
+dhcpd.conf before enabling that feature. It is off by default.
+
+When using that feature, dhcpd.conf can associate MAC addresses
+with hostnames (as defined from cobbler), and cobbler can
+also differentiate between IA64 and x86/x86_64 network boots.
+
diff --git a/README b/README
new file mode 100644
index 0000000..7ad9033
--- /dev/null
+++ b/README
@@ -0,0 +1,5 @@
+Docs are currently available two ways:
+
+- Install and run "man cobbler"
+- Run "perldoc cobbler.pod" from a source checkout
+
diff --git a/cobbler.spec b/cobbler.spec
index 4b1dd92..c12c047 100644
--- a/cobbler.spec
+++ b/cobbler.spec
@@ -2,8 +2,8 @@
Summary: Boot server configurator
Name: cobbler
-Version: 0.1.1
-Release: 8%{?dist}
+Version: 0.2.0
+Release: 1%{?dist}
Source0: %{name}-%{version}.tar.gz
License: GPL
Group: Applications/System
@@ -51,6 +51,8 @@ rm -rf $RPM_BUILD_ROOT
%doc AUTHORS CHANGELOG NEWS README COPYING
%changelog
+* Fri Sep 22 2006 - 0.2.0-1
+- Lots of new PXE and dhcpd.conf upstream, elilo.efi now included.
* Thu Sep 21 2006 - 0.1.1-8
- Added doc files to %doc, removed INSTALLED_FILES code
* Wed Sep 20 2006 - 0.1.1-7
diff --git a/setup.py b/setup.py
index d0b06a1..4f333bc 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ import sys
from distutils.core import setup, Extension
import string
-VERSION = "0.1.1"
+VERSION = "0.2.0"
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.