summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-09-28 17:14:18 -0400
committerMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-09-28 17:14:18 -0400
commitaf093718f222b1b7091bd7f8ab1e7057245b37a3 (patch)
tree96ecb44486b211206746508c29aea73d03f70b53
parent51d63444639e56045ac395cc87e821d8c3722152 (diff)
downloadthird_party-cobbler-af093718f222b1b7091bd7f8ab1e7057245b37a3.tar.gz
third_party-cobbler-af093718f222b1b7091bd7f8ab1e7057245b37a3.tar.xz
third_party-cobbler-af093718f222b1b7091bd7f8ab1e7057245b37a3.zip
Get ready for 0.6.2-2 release
-rw-r--r--CHANGELOG2
-rw-r--r--cobbler.spec5
-rw-r--r--cobbler/remote.py2
3 files changed, 5 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 7f3da4c..0fe19d7 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,7 +1,7 @@
Cobbler CHANGELOG
(all entries mdehaan@redhat.com unless noted otherwise)
-* Fri Aug 31 2007 - 0.6.2
+* Fri Sep 28 2007 - 0.6.2
- cobbler repo auto-add to discover yum repos automatically
- fix bug that allows empty mac addresses (None) in dhcpd.conf
- kickstarts automatically save kickstart file used to /root/cobbler.ks
diff --git a/cobbler.spec b/cobbler.spec
index 388d5aa..6a17d5a 100644
--- a/cobbler.spec
+++ b/cobbler.spec
@@ -2,7 +2,7 @@
Summary: Boot server configurator
Name: cobbler
Version: 0.6.2
-Release: 1%{?dist}
+Release: 2%{?dist}
Source0: %{name}-%{version}.tar.gz
License: GPLv2+
Group: Applications/System
@@ -174,7 +174,7 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT
%changelog
-* Fri Aug 31 2007 Michael DeHaan <mdehaan@redhat.com> - 0.6.2-1
+* Fri Sep 28 2007 Michael DeHaan <mdehaan@redhat.com> - 0.6.2-2
- Upstream changes (see CHANGELOG)
- removed syslinux as a requirement (cobbler check will detect absense)
- packaged /var/lib/cobbler/settings as a config file
@@ -182,6 +182,7 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT
- permissions cleanup
- make license field conform to rpmlint
- relocate cgi-bin files to cobbler subdirectory
+- include the WUI!
* Thu Aug 30 2007 Michael DeHaan <mdehaan@redhat.com> - 0.6.1-2
- Upstream changes (see CHANGELOG)
diff --git a/cobbler/remote.py b/cobbler/remote.py
index f36d057..ec89168 100644
--- a/cobbler/remote.py
+++ b/cobbler/remote.py
@@ -276,7 +276,7 @@ class CobblerXMLRPCInterface:
mac = ':'.join(map(lambda x: "%02x" % x, mac))
systems = self.api.systems()
while ( systems.find(mac_address=mac) ):
- mac = self.random_mac()
+ mac = self.get_random_mac()
return mac