summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG3
-rw-r--r--cobbler.spec8
-rw-r--r--docs/cobbler.pod2
-rw-r--r--setup.py2
4 files changed, 12 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index aa106a8..b8cc7e2 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,9 @@
Cobbler CHANGELOG
(all entries mdehaan@redhat.com unless noted otherwise)
+* Thu Nov 07 2007 - 0.6.4
+- Changed permissions of auth.conf
+
* Wed Nov 07 2007 - 0.6.3
- Be able to define and use Multiple NICs per system
- Add --virt-cpus to profile editing
diff --git a/cobbler.spec b/cobbler.spec
index 071d57f..d32122e 100644
--- a/cobbler.spec
+++ b/cobbler.spec
@@ -1,8 +1,8 @@
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
Summary: Boot server configurator
Name: cobbler
-Version: 0.6.3
-Release: 2%{?dist}
+Version: 0.6.4
+Release: 1%{?dist}
Source0: %{name}-%{version}.tar.gz
License: GPLv2+
Group: Applications/System
@@ -192,6 +192,10 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT
%changelog
+* Thu Nov 08 2007 Michael DeHaan <mdehaan@redhat.com> - 0.6.4-1
+- Upstream changes (see CHANGELOG)
+- Permissions changes
+
* Wed Nov 07 2007 Michael DeHaan <mdehaan@redhat.com> - 0.6.3-2
- Upstream changes (see CHANGELOG)
- now packaging javascript file(s) seperately for WUI
diff --git a/docs/cobbler.pod b/docs/cobbler.pod
index d99fdab..89c3213 100644
--- a/docs/cobbler.pod
+++ b/docs/cobbler.pod
@@ -682,6 +682,8 @@ chcon httpd_sys_content_t /etc/cobbler/auth.conf
5) Run /sbin/service cobblerd restart.
+6) Verify the AllowOverride section for the /var/www/cgi-bin directory in /etc/httpd/conf/httpd.conf says "AllowOverride All" not "AllowOverride None".
+
6) Visit http://yourserver.example.org/cgi-bin/cobbler/webui.cgi and log in with whatever you chose in step 3.
=head1 EXIT_STATUS
diff --git a/setup.py b/setup.py
index a780c21..2ead832 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ import sys
from distutils.core import setup, Extension
import string
-VERSION = "0.6.3"
+VERSION = "0.6.4"
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 Management. Cobbler has a Python API for integration with other GPL systems management applications.