diff options
author | Michael DeHaan <mdehaan@redhat.com> | 2008-12-19 11:17:07 -0500 |
---|---|---|
committer | Michael DeHaan <mdehaan@redhat.com> | 2008-12-19 11:17:07 -0500 |
commit | fa705f6e45731206ba8fb31099461014f8cf57ce (patch) | |
tree | 4f82e2d804534c339fa554e7bf037dce4565f6bc | |
parent | 55e73de5e3afc59c3bb236ef2f53d45c95b49fa5 (diff) | |
download | cobbler-fa705f6e45731206ba8fb31099461014f8cf57ce.tar.gz cobbler-fa705f6e45731206ba8fb31099461014f8cf57ce.tar.xz cobbler-fa705f6e45731206ba8fb31099461014f8cf57ce.zip |
Release bump
-rw-r--r-- | CHANGELOG | 6 | ||||
-rw-r--r-- | cobbler.spec | 16 | ||||
-rw-r--r-- | setup.py | 4 |
3 files changed, 16 insertions, 10 deletions
@@ -1,7 +1,9 @@ Cobbler CHANGELOG -(all entries mdehaan@redhat.com unless noted otherwise) -- Fri Nov 14 2008 - 1.3 +- Fri Dec 19 2008 - 1.4 +- (----) Stable release of 1.3 development branch + +- Fri Dec 19 2008 - 1.3 - (FEAT) ACLs to extend authz (see Wiki) - (FEAT) puppet integration with --mgmt-classes and external nodes URL - (FEAT) added puppet external nodes script, cobbler-ext-nodes diff --git a/cobbler.spec b/cobbler.spec index 8502572b..6bbaf002 100644 --- a/cobbler.spec +++ b/cobbler.spec @@ -2,7 +2,7 @@ Summary: Boot server configurator Name: cobbler AutoReq: no -Version: 1.3.4 +Version: 1.4.0 Release: 1%{?dist} Source0: %{name}-%{version}.tar.gz License: GPLv2+ @@ -51,16 +51,16 @@ Url: http://cobbler.et.redhat.com %description -Cobbler is a network boot and update server. Cobbler -supports PXE, provisioning virtualized images, and +Cobbler is a network install server. Cobbler +supports PXE, virtualized installs, and reinstalling existing Linux machines. The last two -modes require a helper tool called 'koan' that +modes use a helper tool, '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 has a Python and XMLRPC API for integration with other -applications. +applications. There is also a web interface. %prep %setup -q @@ -300,8 +300,12 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT %changelog +* Fri Dec 19 2008 Michael DeHaan <mdehaan@redhat.com> - 1.4.0-1 +- Upstream changes (see CHANGELOG) +- Updated selinux setup + * Wed Dec 10 2008 Michael DeHaan <mdehaan@redhat.com> - 1.3.4-1 -- Updated test release +- Updated test release (see CHANGELOG) - Upstream changes (see CHANGELOG) - Added specfile changes for python 2.6 @@ -9,10 +9,10 @@ import cobbler.sub_process as subprocess import Cheetah.Template as Template import time -VERSION = "1.3.4" +VERSION = "1.4.0" 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. +Cobbler is a network install server. Cobbler supports PXE, virtualized installs, and reinstalling existing Linux machines. The last two modes use a helper tool, '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 has a Python and XMLRPC API for integration with other applications. There is also a web interface. """ TEMPLATES_DIR = "installer_templates" DEFAULTS = os.path.join(TEMPLATES_DIR, "defaults") |