Set ALLOWED_HOSTS variable for cobbler-web settings.
[packages/centos7/cobbler.git] / cobbler.spec
1 %{!?__python2: %global __python2 /usr/bin/python2}
2 %{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
3 %{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
4
5 %global debug_package %{nil}
6 %define _binaries_in_noarch_packages_terminate_build 0
7
8 %if 0%{?fedora} || 0%{?rhel} >= 6
9 %global tftp_dir /var/lib/tftpboot/
10 %else
11 %global tftp_dir /tftpboot/
12 %endif
13
14 Summary: Boot server configurator
15 Name: cobbler
16 License: GPLv2+
17 AutoReq: no
18 Version: 2.6.9
19 Release: 1%{?dist}~mos10
20 Source0: https://github.com/cobbler/cobbler/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
21 # Support newer virt-install - https://bugzilla.redhat.com/show_bug.cgi?id=1188424
22 Patch0: cobbler-virtinstall.patch
23 # Support centos release numbering
24 # https://bugzilla.redhat.com/show_bug.cgi?id=1201879
25 Patch1: cobbler-centos.patch
26 # Support django1.7+
27 # https://github.com/cobbler/cobbler-web/issues/9
28 Patch2: cobbler-django17.patch
29 # Add ALLOWED_HOSTS into djando settings
30 Patch3: Mirantis-Add-ALLOWED_HOSTS-for-settings.patch
31
32 Group: Applications/System
33 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
34 BuildArch: noarch
35 Url: http://www.cobblerd.org/
36
37 BuildRequires: git
38 BuildRequires: python2-devel
39 BuildRequires: PyYAML
40 BuildRequires: python-cheetah
41 BuildRequires: python-setuptools
42
43 Requires: httpd
44 Requires: tftp-server
45 Requires: mod_wsgi
46 Requires: createrepo
47 Requires: python-cheetah
48 %if 0%{?rhel} && 0%{?rhel} <= 5
49 Requires: python-ctypes
50 %endif
51 Requires: python-netaddr
52 Requires: python-simplejson
53 Requires: python-urlgrabber
54 Requires: PyYAML
55 Requires: rsync
56 # syslinux is only available on x86
57 %ifarch %{ix86} x86_64
58 Requires: syslinux
59 %endif
60
61 %if 0%{?fedora} || 0%{?rhel} >= 6
62 Requires: genisoimage
63 %else
64 Requires: mkisofs
65 %endif
66 Requires: yum-utils
67 %if 0%{?fedora} || 0%{?rhel} >= 7
68 BuildRequires: systemd
69 Requires(post): systemd
70 Requires(preun): systemd
71 Requires(postun): systemd
72 %else
73 Requires(post):  /sbin/chkconfig
74 Requires(preun): /sbin/chkconfig
75 Requires(preun): /sbin/service
76 %endif
77
78 %description
79 Cobbler is a network install server.  Cobbler supports PXE, ISO
80 virtualized installs, and re-installing existing Linux machines.
81 The last two modes use a helper tool, 'koan', that integrates with
82 cobbler.  There is also a web interface 'cobbler-web'.  Cobbler's
83 advanced features include importing distributions from DVDs and rsync
84 mirrors, kickstart templating, integrated yum mirroring, and built-in
85 DHCP/DNS Management.  Cobbler has a XMLRPC API for integration with
86 other applications.
87
88 %prep
89 %setup -q
90 %patch0 -p1 -b .virtinstall
91 %patch1 -p1 -b .centos
92 # django 1.8 on Fedora 22+
93 %if 0%{?fedora} >= 22 || 0%{?rhel} >= 6
94 %patch2 -p1 -b .django17
95 %patch3 -p1
96 %endif
97
98 %build
99 %{__python2} setup.py build
100
101 %install
102 test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT
103 %{__python2} setup.py install --skip-build --root=$RPM_BUILD_ROOT
104
105 # cobbler
106 rm $RPM_BUILD_ROOT%{_sysconfdir}/cobbler/cobbler.conf
107
108 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d
109 mv $RPM_BUILD_ROOT%{_sysconfdir}/cobbler/cobblerd_rotate $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/cobblerd
110
111 # Create data directories in tftp_dir
112 mkdir -p $RPM_BUILD_ROOT%{tftp_dir}/{boot,etc,grub,images{,2},ppc,pxelinux.cfg,s390x}
113
114 %if 0%{?rhel} == 6
115 # sysvinit
116 mkdir -p %{_sysconfdir}/init.d
117 mv $RPM_BUILD_ROOT%{_sysconfdir}/cobbler/cobblerd $RPM_BUILD_ROOT%{_sysconfdir}/init.d/cobblerd
118 rm $RPM_BUILD_ROOT%{_sysconfdir}/cobbler/cobblerd.service
119 %else
120 # systemd
121 rm $RPM_BUILD_ROOT%{_sysconfdir}/cobbler/cobblerd
122 rm $RPM_BUILD_ROOT%{_sysconfdir}/init.d/cobblerd
123 mkdir -p $RPM_BUILD_ROOT%{_unitdir}
124 mv $RPM_BUILD_ROOT%{_sysconfdir}/cobbler/cobblerd.service $RPM_BUILD_ROOT%{_unitdir}
125 %endif
126
127 # cobbler-web
128 rm $RPM_BUILD_ROOT%{_sysconfdir}/cobbler/cobbler_web.conf
129
130 # koan
131 mkdir -p $RPM_BUILD_ROOT/var/spool/koan
132
133
134 %pre
135 if (( $1 >= 2 )); then
136     # package upgrade: backup configuration
137     DATE=$(date "+%Y%m%d-%H%M%S")
138     if [[ ! -d /var/lib/cobbler/backup/upgrade-${DATE} ]]; then
139         mkdir -p /var/lib/cobbler/backup/upgrade-${DATE}
140     fi
141     for i in "config" "snippets" "kickstarts" "triggers" "scripts"; do
142         if [[ -d /var/lib/cobbler/${i} ]]; then
143             cp -r /var/lib/cobbler/${i} /var/lib/cobbler/backup/upgrade-${DATE}
144         fi
145     done
146     if [[ -d /etc/cobbler ]]; then
147         cp -r /etc/cobbler /var/lib/cobbler/backup/upgrade-${DATE}
148     fi
149 fi
150
151
152 %if 0%{?rhel} == 6
153 %post
154 # package install
155 if (( $1 == 1 )); then
156     /sbin/chkconfig --add cobblerd > /dev/null 2>&1
157     /etc/init.d/cobblerd start > /dev/null 2>&1
158     /etc/init.d/httpd restart > /dev/null 2>&1
159 fi
160 %preun
161 # before last package is removed
162 if (( $1 == 0 )); then
163     /sbin/chkconfig --del cobblerd > /dev/null 2>&1
164     /etc/init.d/cobblerd stop > /dev/null 2>&1
165 fi 
166 %postun
167 # after last package is removed
168 if (( $1 == 0 )); then
169     /etc/init.d/httpd condrestart > /dev/null 2>&1
170 fi
171 %endif
172
173
174 %if 0%{?fedora} || 0%{?rhel} >= 7
175 %post
176 %systemd_post cobblerd.service
177
178 %preun
179 %systemd_preun cobblerd.service
180
181 %postun
182 %systemd_postun_with_restart cobblerd.service
183 %endif
184
185
186 %clean
187 test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT
188
189 %files
190 # binaries
191 %{_bindir}/cobbler
192 %{_bindir}/cobbler-ext-nodes
193 %{_bindir}/cobblerd
194 %{_sbindir}/tftpd.py
195
196 # python
197 %{python2_sitelib}/cobbler
198 %{python2_sitelib}/cobbler*.egg-info
199
200 # configuration
201 %config(noreplace) %{_sysconfdir}/cobbler
202 %config(noreplace) %{_sysconfdir}/logrotate.d/cobblerd
203 %config(noreplace) /etc/httpd/conf.d/cobbler.conf
204 %if 0%{?fedora} || 0%{?rhel} >= 7
205 %{_unitdir}/cobblerd.service
206 %else
207 /etc/init.d/cobblerd
208 %endif
209
210 # data
211 %{tftp_dir}/*
212 /var/www/cobbler
213 %config(noreplace) /var/lib/cobbler
214 %exclude /var/lib/cobbler/webui_sessions
215
216 # log
217 /var/log/cobbler
218
219 # documentation
220 %doc AUTHORS README COPYING docs/README.openvz docs/README.mysql
221 %{_mandir}/man1/cobbler.1.gz
222
223
224 %package -n koan
225
226 Summary: Helper tool that performs cobbler orders on remote machines
227 Group: Applications/System
228 Requires: python-simplejson
229 Requires: virt-install
230
231
232 %description -n koan
233 Koan stands for kickstart-over-a-network and allows for both
234 network installation of new virtualized guests and reinstallation
235 of an existing system.  For use with a boot-server configured with Cobbler
236
237
238 %files -n koan
239 /var/spool/koan
240 /var/lib/koan
241 %{_bindir}/koan
242 %{_bindir}/ovz-install
243 %{_bindir}/cobbler-register
244 %{python2_sitelib}/koan
245
246 %exclude %{python2_sitelib}/koan/sub_process.py*
247 %exclude %{python2_sitelib}/koan/opt_parse.py*
248 %exclude %{python2_sitelib}/koan/text_wrap.py*
249
250 %{_mandir}/man1/koan.1.gz
251 %{_mandir}/man1/cobbler-register.1.gz
252 /var/log/koan
253 %doc AUTHORS COPYING README
254
255
256 %package -n cobbler-web
257
258 Summary: Web interface for Cobbler
259 Group: Applications/System
260 Requires: cobbler
261 %if 0%{?fedora} || 0%{?rhel} >= 7
262 Requires: python-django
263 %else
264 Requires: Django >= 1.4
265 %endif
266 Requires: mod_wsgi
267 Requires: mod_ssl
268 Requires(post): openssl
269
270
271 %description -n cobbler-web
272 Web interface for Cobbler that allows visiting
273 http://server/cobbler_web to configure the install server.
274
275
276 %post -n cobbler-web
277 # Change the SECRET_KEY option in the Django settings.py file
278 # required for security reasons, should be unique on all systems
279 RAND_SECRET=$(openssl rand -base64 40 | sed 's/\//\\\//g')
280 sed -i -e "s/SECRET_KEY = ''/SECRET_KEY = \'$RAND_SECRET\'/" /usr/share/cobbler/web/settings.py
281
282 %files -n cobbler-web
283 %doc AUTHORS COPYING README
284 %config(noreplace) /etc/httpd/conf.d/cobbler_web.conf
285 %attr(-,apache,apache) /usr/share/cobbler/web
286 %dir %attr(700,apache,root) /var/lib/cobbler/webui_sessions
287 %attr(-,apache,apache) /var/www/cobbler_webui_content/
288
289
290 %changelog
291 * Thu May 19 2016 Ivan Suzdal <mos-linux-team@mirantis.com> - 2.6.9-1~mos10
292 - Add patch to fix 'error 400' for cobbler-web (LP: #1583648)
293 - Bump version
294
295 * Thu Feb 11 2016 Ivan Suzdal <isuzdal@mirantis.com> - 2.6.9-1~mos9
296 - Add 'rhel' condition for django17 path
297 - Bump version
298
299 * Tue Sep 29 2015 Artem Silenkov <asilenkov@mirantis.com> - 2.6.9-1~mos8.0.1
300 - Make sources local
301 - Rebuild from epel7 
302
303 * Mon Jun 22 2015 Orion Poplawski <orion@cora.nwra.com> - 2.6.9-1
304 - Update to 2.6.9
305
306 * Fri May 8 2015 Orion Poplawski <orion@cora.nwra.com> - 2.6.8-1
307 - Update to 2.6.8
308 - Backport upstream patch to fix centos version detection (bug #1201879)
309
310 * Tue Apr 28 2015 Orion Poplawski <orion@cora.nwra.com> - 2.6.7-3
311 - Add patch to fix virt-install support for F21+/EL7 (bug #1188424)
312
313 * Mon Apr 27 2015 Orion Poplawski <orion@cora.nwra.com> - 2.6.7-2
314 - Create and own directories in tftp_dir
315
316 * Wed Dec 31 2014 Orion Poplawski <orion@cora.nwra.com> - 2.6.7-1
317 - Update to 2.6.7
318
319 * Sun Oct 19 2014 Orion Poplawski <orion@cora.nwra.com> - 2.6.6-1
320 - Update to 2.6.6
321
322 * Fri Aug 15 2014 Orion Poplawski <orion@cora.nwra.com> - 2.6.5-1
323 - Update to 2.6.5
324
325 * Wed Aug 13 2014 Orion Poplawski <orion@cora.nwra.com> - 2.6.4-2
326 - Require Django >= 1.4
327
328 * Mon Aug 11 2014 Orion Poplawski <orion@cora.nwra.com> - 2.6.4-1
329 - Update to 2.6.4
330
331 * Fri Jul 18 2014 Orion Poplawski <orion@cora.nwra.com> - 2.6.3-1
332 - Update to 2.6.3
333
334 * Wed Jul 16 2014 Orion Poplawski <orion@cora.nwra.com> - 2.6.2-1
335 - Update to 2.6.2
336 - Spec cleanup
337
338 * Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.1-2
339 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
340
341 * Fri May 23 2014 Orion Poplawski <orion@cora.nwra.com> - 2.6.1-1
342 - Update to 2.6.1
343 - Drop koan patch applied upstream
344
345 * Tue Apr 22 2014 Orion Poplawski <orion@cora.nwra.com> - 2.6.0-2
346 - Only require syslinux on x86
347
348 * Mon Apr 21 2014 Orion Poplawski <orion@cora.nwra.com> - 2.6.0-1
349 - Update to 2.6.0
350
351 * Mon Apr 21 2014 Orion Poplawski <orion@cora.nwra.com> - 2.4.3-1
352 - Update to 2.4.3
353 - Add patch to fix bug #1047350
354 - Add requires python-simplejson and virt-install for EL5 (bug #852422)
355 - Use updated systemd macros (bug #850061)
356 - Require python-ctypes on EL5 (bug #838884)
357
358 * Thu Jun 20 2013 James Cammarata <jimi@sngx.net> 2.4.0-1
359 - Release 2.4.0-1 (jimi@sngx.net)
360 * Fri May 24 2013 James Cammarata <jimi@sngx.net> 2.4.0-beta6
361 - New BETA release - 2.4.0 beta6
362 * Mon Apr 22 2013 James Cammarata <jimi@sngx.net> 2.4.0-beta5
363 - A few bugfixes and rebuilding the RPM because of a goof
364   (jimi@sngx.net)
365
366 * Wed Apr 03 2013 James Cammarata <jimi@sngx.net> 2.4.0-beta4
367 - 2.4.0-beta4 release
368 * Wed Dec 12 2012 James Cammarata <jimi@sngx.net> 2.4.0-beta3
369 - New release 2.4.0-beta3
370 * Thu Oct 11 2012 James Cammarata <jimi@sngx.net> 2.4.0-beta2
371 - Modified spec version/release to be 2.4.0-beta2 (jimi@sngx.net)
372 - fixing up a bad commit merge (jimi@sngx.net)
373
374 * Thu Oct 11 2012 James Cammarata <jimi@sngx.net> 2.4.0-beta1
375 - Beta Release 1 of 2.4.0
376 - BUGFIX - Issue #329 - Systems no longer allow an add with an image for a
377   parent (jimi@sngx.net)
378 - BUGFIX - Issue #327 - revert 5afcff7 and fix in a more sane way
379   (jimi@sngx.net)
380 - Removed some duplicates created by reapplying a patch (jimi@sngx.net)
381 - BUGFIX - Issue #267 - old python-virtinst does not support --boot
382   (jimi@sngx.net)
383 - Revise install_post_puppet.py to use newer puppet syntax
384   (stephen@esstec.co.uk)
385 - Get rid of deprecated Puppet syntax so that cobbler works with Puppet 3.0
386   (stephen@esstec.co.uk)
387 - Added ubuntu to dist check for named.conf location
388   (daniel.givens@rackspace.com)
389 - Expanded automatic determination of tftpboot path, isc dhcp and bind service
390   names and config files based on distro. (daniel@givenstx.com)
391 - Make the service name for DHCP and DNS restarts configurable for better
392   portable between distros. (daniel.givens@rackspace.com)
393 - Serial based on formatted date and revision number (alevy@mobitv.com)
394 - Correct undefined variable name (jbd@jbdenis.net)
395 - fix merge Issue #252 BUGFIX and #262 (daikame@gmail.com)
396 - Add check for valid driver_type before executing qemu-img (jimi@sngx.net)
397 - fix mistake remove import. (daikame@gmail.com)
398 - move exec method to utils.py, and catch unexpected exception.
399   (daikame@gmail.com)
400 - not check driver type on create method. (daikame@gmail.com)
401 - BUGFIX - Issue #305 - Incorrect Kickstart file when gPXE enabled
402   (jimi@sngx.net)
403 - BUGFIX - Issue #304 - Cobbler does not store values correctly for ksmeta
404   Objects were getting flattened improperly, so it was losing escapes/quoting
405   for values with spaces (jimi@sngx.net)
406 - add vmdk and raw file create support. (daikame@gmail.com)
407 - BUGFIX - Issue #267 - old python-virtinst does not support --boot
408   (jimi@sngx.net)
409 - Modified spec version/release to be 2.4.0-beta-1 (jimi@sngx.net)
410 - Initial commit for mysql backend support (jimi@sngx.net)
411 - BUGFIX - Issue #277 - move webroot to /srv/www for debian/ubuntu
412   (jimi@sngx.net)
413 - FEATURE - adding 'zonetype' variable for DNS zone rendering (jimi@sngx.net)
414 - BUGFIX - Issue #278 - cobbler import fails for ubuntu images due to rsync
415   args (jimi@sngx.net)
416 - BUGFIX - Issue #285 - update cobbler man page for incorrect options
417   (jimi@sngx.net)
418 - BUGFIX - Issue #241 - adding distro with blank name via XMLRPC should not
419   work (jimi@sngx.net)
420 - BUGFIX - Issue #272 - allow anamon to log entries when building systems based
421   on profiles (no corresponding system record) (jimi@sngx.net)
422 - BUGFIX - Issue #252 - fuzzy match on lvs name returns a false match
423   preventing LV creation (jimi@sngx.net)
424 - BUGFIX - Issue #287 - patch to allow templar to work without a config, which
425   was breaking the tftpd.py script (jimi@sngx.net)
426 - add qcow2 driver type (daikame@gmail.com)
427 - fix koan qemu-machine-type param test. (daikame@gmail.com)
428 - Only cosmetic cleanup - removed commands that were commented out, added
429   spaces for more clear code (flaks@bnl.gov)
430 - Modified sample.seed to make use kickstart_start and kickstart_done snippets
431   for debian. As a result the following cobbler features work for debian:   -
432   prevent net boot looping   - cobbler status reflects debian installations   -
433   preseed file is downloaded a nd saved on the installed system as
434   /var/log/cobbler.seed Also made download_config_files_deb snippet, make use
435   of late_command New post_run_deb snippet allows to execute post installation
436   script. (flaks@bnl.gov)
437 - Some changes for testing (jimi@sngx.net)
438 - Minor fix for urlparse on older pythons (>2.5) (jimi@sngx.net)
439 - FEATURE - Issue #253 - Use PEERDNS=no for DHCP interfaces when name servers
440   are specified (jimi@sngx.net)
441 - install-tree for debian/ubuntu modified to take tree= from meta data. http,
442   ftp and nfs remote tree locations supported (flaks@bnl.gov)
443 - add support of custom logical volume name (daikame@gmail.com)
444 - Partial revert of 87acfc8b, and a minor change to bring the koan extra-args
445   inline with the PXE args (jimi@sngx.net)
446 - New default preseed, and a few minor changes to make ubuntu auto install work
447   better (jimi@sngx.net)
448 - Add support for qemu machine type to emulate (option --qemu-machine-type).
449   (isaoshimizu@gmail.com)
450 - Modern x86 kernels have 2048 char limit and this is needed to support
451   configurations with kickstart+NIC kernel params. Otherwise koan refuses to
452   accept the param list. (oliver@cpan.org)
453 - Allow koan's -S option to work for SuSE breed. Also remove -S for breed=None,
454   as I assume "Red Hat" is not a sane assumption for all Distros without a
455   breed. (oliver@cpan.org)
456 - Only add a udev net rule for an interface if the MAC is set. This fixes
457   behaviour whereby a dummy udev rule at eth0 forces the first NIC to get eth1
458   post-install. (oliver@cpan.org)
459 - Make the domainname setting be the full eth0 DNS Name, minus the first dotted
460   part (and not the FQDN). (oliver@cpan.org)
461 - BUGFIX - Issue #252 - fuzzy match on lvs name returns a false match
462   preventing LV creation (jimi@sngx.net)
463 - Added back in the filesystem loader. (oliver@cpan.org)
464 - BUGFIX - Issue #247 - Reposync does not work from the web interface
465   (jimi@sngx.net)
466 - BUGFIX - Issue #246 - CentOS 5.x install fence_tools to /sbin/
467   (jimi@sngx.net)
468 - Fix post_report trigger typo (jimi@sngx.net)
469 - Some fixes for koan running with an old virt-install (jimi@sngx.net)
470 - Define pxe_menu_items variable when creating PXE files for systems
471   (jthiltges2@unl.edu)
472 - Refactor PXE and GRUB menu item creation into a separate function
473   (jthiltges2@unl.edu)
474 - django 1.4 and later have deprecated the old TEMPLATE_LOADERS and replaced
475   them with a new app_directories.Loader (oliver@cpan.org)
476 - Add support for UEFI boot to the subnet, but not for defined systems yet.
477   (erinn.looneytriggs@gmail.com)
478 - Fix redhat import whitelist for Fedora 17 (jimi@sngx.net)
479 - Fix unittest on the case of haven't virt-install libs. (daikame@gmail.com)
480 - os_version for debian should be similar to ubunty for virt-install to work
481   changed tree in app.py so that I can use debian mirror different from cobbler
482   server (flaks@bnl.gov)
483 - fedora 17 changed the output of ifconfig command. This will make IFNAME set
484   in snippets again (flaks@bnl.gov)
485 - remove edit for now (flaks@bnl.gov)
486 - Fixed snippets for bonded_bridge_slave and a few other fixes for koan/web GUI
487   (jimi@sngx.net)
488 - Initial support for bonded_bridge_slave type. TODO: modifying snippets to
489   actually make it work... (jimi@sngx.net)
490 - The webui_sessions directory belongs only to cobbler-web
491   (chutzimir@gmail.com)
492 - RPM: put cobbler*.conf files only in /etc/httpd/conf.d
493   (cristian.ciupitu@yahoo.com)
494 - better fix for pull request #228 (jorgen.maas@gmail.com)
495 - make rpms failed because the misc/ directory containing the augeas lense
496   could not be found. this simple diff fixes that. (jorgen.maas@gmail.com)
497 - Ubuntu actually requires auto=true in kopts See
498   http://serverfault.com/a/144290/39018 (ekirpichov@gmail.com)
499 - Whitespace cleanup for the new openvz stuff (jimi@sngx.net)
500 - Remove dead code (useless imports) (cristian.ciupitu@yahoo.com)
501 - BUGFIX extra-args option problems (daikame@gmail.com)
502 - FIX koan virt-install tests. (daikame@gmail.com)
503 - added debian support to prevent net boot looping (flaks@bnl.gov)
504 - README.openvz: - added (nvrhood@gmail.com)
505 - scripts/ovz-install: - added support for "services" kickstart option -
506   corrected repos and installation source processing (nvrhood@gmail.com)
507 - cobbler.spec, setup.py: - added scripts/ovz-install (nvrhood@gmail.com)
508 - koan/openvzcreate.py, scripts/ovz-install: - changes in copyright notice
509   (nvrhood@gmail.com)
510 - koan/app.py: - bug in koan: size of freespace on VG expressed as float with
511   comma, but need fload with point (nvrhood@gmail.com)
512 - koan/app.py: - added type "openvz" (nvrhood@gmail.com)
513 - cobbler/collection.py: - openvz containers doesn't need to boot from PXE, so
514   we prevent PXE-menu creation for such profiles. (nvrhood@gmail.com)
515 - cobbler/item_profile.py, cobbler/utils.py: - added "openvz" virtualization
516   type (nvrhood@gmail.com)
517 - cobbler/item_system.py: - added openvz for virt_type (nvrhood@gmail.com)
518 - [BUGFIX] template errors can hit an exception path that references an
519   undefined variable (jimi@sngx.net)
520 - If the call to int() fails, inum has no value, thus the reference to inum in
521   the except clause causes an UnboundLocalError when it tries to reference
522   inum. (joshua@azariah.com)
523 - Add new ubuntu (alpha) version to codes.py (jorgen.maas@gmail.com)
524 - Not all remove current ifcfg- post_install_network_config (me@n0ts.org)
525 - Update systemctl script to resolve some issues (jimi@sngx.net)
526 - More spec fixes (jimi@sngx.net)
527 - Removing replicate_use_default_rsync_options setting and setting
528   replicate_rsync_options to existing rsync default.  Issue #58
529   (john@julienfamily.com)
530 - Commit for RFE: Expose rsync options during replication.  Issue #58
531   (john@julienfamily.com)
532 - Yet more HTML/CSS fixes, cleaning up some overly large inputs caused by other
533   CSS changes (jimi@sngx.net)
534 - More HTML/CSS improvements for new weblayout (jimi@sngx.net)
535 - CSS improvements for the tabbed layout (jimi@sngx.net)
536 - Fix for settings edit using the new tab format (jimi@sngx.net)
537 - Added a cancel button to replace the reset button (jimi@sngx.net)
538 - Fix saving of multiselect fields (jimi@sngx.net)
539 - Modification to generic_edit template to use tabs for categories plus some
540   miscellaneous cleanup (jimi@sngx.net)
541 - Adding an example line for redhat imports to the whitelist file
542   (jimi@sngx.net)
543 - Another minor fix for suse imports - fixing up name when using --available-as
544   (already done in other import modules) - allowing multiple arch imports (also
545   already done in other imports) (jimi@sngx.net)
546 - Some fixups for suse using --available-as (jimi@sngx.net)
547 - Fix for import when using --available-as - currently rsyncs full remote tree,
548   changing that to only import files in a white list - some modifications to
549   import modules to clean some things up and make available-as work better -
550   fix in utils.py for path_tail, which was not working right and appending the
551   full path (jimi@sngx.net)
552 - Run the same sed command on the default distributed config file to ensure
553   consistent indentation (jimi@sngx.net)
554 - Add setting to enable/disable dynamic settings changes Adding
555   cobblersettings.aug to distributed files, since we need a copy that doesn't
556   insert tabs Added a "cobbler check" that checks if dynamic settings is
557   enabled and prints a sed command to cleanup the settings file spacing/indents
558   (jimi@sngx.net)
559 - Change cli command "settings" to "setting" to match other commands (which are
560   not plurarlized) (jimi@sngx.net)
561 - Removing commented-out try/except block in config.py, didn't mean to commit
562   this (jimi@sngx.net)
563 - Fixed/improved CLI reporting for settings (jimi@sngx.net)
564 - Added support for validating setting type when saving Also fixed up the
565   augeas stuff to save lists and hashes correctly (jimi@sngx.net)
566 - Fix for incorrect redirect when login times out when looking at a setting
567   edit (jimi@sngx.net)
568 - Dynamic settings edit support for the web GUI (jimi@sngx.net)
569 - Added ability to write settings file via augeas (jimi@sngx.net)
570 - Initial support for modifying settings live Changed settings do not survive a
571   reboot and revert to what's in /etc/cobbler/settings TODO:  * report --name
572   show a single setting  * validate settings based on type (string, list, bool,
573   etc.)  * web support for editing  * persisting settings after change
574   (jimi@sngx.net)
575 - Branch for 2.4.0, updated spec and setup.py (jimi@sngx.net)
576
577 * Sun Jun 17 2012 James Cammarata <jimi@sngx.net> 2.2.3-2
578 - [BUGFIX] re-enable writing of DHCP entries for non-pxeboot-enabled systems
579   unless they're static (jimi@sngx.net)
580 * Tue Jun 05 2012 James Cammarata <jimi@sngx.net> 2.2.3-1
581 - [BUGFIX] add dns to kernel commandline when using static interface
582   (frido@enu.zolder.org)
583 - [BUGFIX] issue #196 - repo environment variables bleed into other repos
584   during sync process This patch has reposync cleanup/restore any environment
585   variables that were changed during the process (jimi@sngx.net)
586 - BUGFIX quick dirty fix to work around an issue where cobbler would not log in ldap
587   usernames which contain uppercase characters. at line 60 instead of "if user
588   in data", "if user.lower() in data" is used. It would appear the parser puts
589   the usernames in data[] in lowercase, and the comparison fails because "user"
590   does hold capitalizations. (matthiasvandegaer@hotmail.com)
591 - [BUGFIX] simplify SELinux check reporting 
592   * Remove calls to semanage, policy prevents apps from running that directly 
593     (and speeds up check immensely) 
594   * Point users at a wiki page which will contain details on ensuring cobbler
595     works with SELinux properly (jimi@sngx.net)
596 - [BUGFIX] issue #117 - incorrect permissions on files in /var/lib/cobbler
597   (j-nomura@ce.jp.nec.com)
598 - [BUGFIX] issue #183 - update objects mgmt classes field when a mgmt class is
599   renamed (jimi@sngx.net)
600 - [BUGFIX] adding some untracked directories and the new augeas lense to the
601   setup.py and cobbler.spec files (jimi@sngx.net)
602 - [FEATURE] Added ability to disable grubby --copy-default behavior for distros that may
603   have problems with it (jimi@sngx.net)
604 - [SECURITY] Major changes to power commands: 
605   * Fence options are now based on /usr/sbin/fence_* - so basically anything the 
606     fence agents package provides.
607   * Templates will now be sourced from /etc/cobbler/power/fence_<powertype>.template.  
608     These templates are optional, and are only required if you want to do extra 
609     options for a given command. - All options for the fence agent command are sent 
610     over STDIN. 
611   * Support for ipmitool is gone, use fence_ipmilan instead (which uses ipmitool 
612     under the hood anyway). This may apply to other power types if they were provided 
613     by a fence_ command. 
614   * Modified labels for the power options to be more descriptive. (jimi@sngx.net)
615 - [BUGFIX] issue #136 - don't allow invalid characters in names when copying
616   objects (jimi@sngx.net)
617 - [BUGFIX] issue #168 - change input_string_or_list to use shlex for split This
618   function was using a regular string split, which did not allow quoted or
619   escaped strings to be preserved. (jimi@sngx.net)
620 - [BUGFIX] Correct method to process the template file. This Fixes the previous issue
621   and process the template. (charlesrg@gmail.com)
622 - [BUGFIX] issue #170 - koan now checks length of drivers list before indexing
623   (daniel@defreez.com)
624 - [BUGFIX] Issue #153 - distro delete doesn't remove link from
625   /var/www/cobbler/links Link was being created incorrectly during the import
626   (jimi@sngx.net)
627 - [FEATURE] snippets: save/restore boot-device on ppc64 on fedora17 (nacc@us.ibm.com)
628 - [BUGFIX] Fixed typo in pre_anamon (brandor5@gmail.com)
629 - [BUGFIX] Added use of $http_port to server URL in pre_anamon and post_anamon
630   (brandor5@gmail.com)
631 - [BUGFIX] Fixed dnsmasq issue regarding missing dhcp-host entries (cobbler@basjes.nl)
632 - [BUGFIX] in buildiso for RedHat based systems. The interface->ip resolution was
633   broken when ksdevice=bootif (default) (jorgen.maas@gmail.com)
634 - [BUGFIX] rename failed for distros that did not live under ks_mirror
635   (jimi@sngx.net)
636 - [BUGFIX] Partial revert of commit 3c81dd3081 - incorrectly removed the 'extends'
637   template directive, breaking rendering in django (jimi@sngx.net)
638 - [BUGFIX] Reverting commit 1d6c53a97, which was breaking spacewalk Changed the web
639   interface stuff to use the existing extended_version() remote call
640   (jimi@sngx.net)
641 - [BUGFIX] Minor fix for serializer_pretty_json change, setting indent to 0 was still
642   causing more formatted JSON to be output (jimi@sngx.net)
643 - [SECURITY] Adding PrivateTmp=yes to the cobblerd.service file for systemd
644   (jimi@sngx.net)
645 - [FEATURE] add a config option to enable pretty JSON output (disabled by default)
646   (aronparsons@gmail.com)
647 - [BUGFIX] issue #107 - creating xendomains link for autoboot fails Changing an
648   exception to a printed warning, there's no need to completely bomb out on the
649   process for this (jimi@sngx.net)
650 - [BUGFIX] issue #28 - Cobbler drops errors on the floor during a replicate
651   Added additional logging to add_ functions to report an error if the add_item
652   call returns False (jimi@sngx.net)
653 - [BUGFIX] add requirement for python-simplejson to koan's package
654   (jimi@sngx.net)
655 - [BUGFIX] action_sync: fix sync_dhcp remote calls (nacc@us.ibm.com)
656 - [BUGFIX] Add support for KVM paravirt (justin@thespies.org)
657 - [BUGFIX] Makefile updates for debian/ubuntu systems (jimi@sngx.net)
658 - [BUGFIX] fix infinite netboot cycle with ppc64 systems (nacc@us.ibm.com)
659 - [BUGFIX] Don't allow Templar classes to be created without a valid config
660   There are a LOT of places in the templar.py code that use self.settings
661   without checking to make sure a valid config was passed in. This could cause
662   random stack dumps when templating, so it's better to force a config to be
663   passed in. Thankfully, there were only two pieces of code that actually did
664   this, one of which was the tftpd management module which was fixed elsewhere.
665   (jimi@sngx.net)
666 - [BUGFIX] instance of Templar() was being created without a config passed in
667   This caused a stack dump when the manage_in_tftpd module tried to access the
668   config settings (jimi@sngx.net)
669 - [BUGFIX] Fix for issue #17 - Make cobbler import be more squeaky when it doesn't
670   import anything (jimi@sngx.net)
671 - [FEATURE] autoyast_sample: save and restore boot device order (nacc@us.ibm.com)
672 - [BUGFIX] Fix for issue #105 - buildiso fails Added a new option for buildiso:
673   --mkisofs-opts, which allows specifying extra options to mkisofs TODO: add
674   input box to web interface for this option (jimi@sngx.net)
675 - [BUGFIX] incorrect lower-casing of kickstart paths - regression from issue
676   #43 (jimi@sngx.net)
677 - [FEATURE] Automatically detect and support bind chroot (orion@cora.nwra.com)
678 - [FEATURE] Add yumopts to kickstart repos (orion@cora.nwra.com)
679 - [BUGFIX] Fix issue with cobbler system reboot (nacc@us.ibm.com)
680 - [BUGFIX] fix stack trace in write_pxe_file if distro==None (smoser@brickies.net)
681 - [BUGFIX] Changed findkeys function to be consisten with keep_ssh_host_keys snippet
682   (flaks@bnl.gov)
683 - [BUGFIX] Fix for issue #15 - cobbler image command does not recognize
684   --image-type=memdisk (jimi@sngx.net)
685 - [BUGFIX] Issue #13 - reposync with --tries > 1 always repeats, even on
686   success The success flag was being set when the reposync ran, but didn't
687   break out of the retry loop - easy fix (jimi@sngx.net)
688 - [BUGFIX] Fix for issue #42 - kickstart not found error when path has leading
689   space (jimi@sngx.net)
690 - [BUGFIX] Fix for issue #26 - Web Interface: Profile Edit
691   * Added jquery UI stuff 
692   * Added javascript to generic_edit template to make all selects in the 
693     class "edit" resizeable
694   (jimi@sngx.net)
695 - [BUGFIX] Fix for issue #53 - cobbler system add without --profile exits 0,
696   but does nothing (jimi@sngx.net)
697 - [BUGFIX] Issue #73 - Broken symlinks on distro rename from web_gui
698   (jimi@sngx.net)
699 - regular OS version maintenance (jorgen.maas@gmail.com)
700 - [BUGFIX] let koan not overwrite existing initrd+kernel (ug@suse.de)
701 - [FEATURE] koan: 
702   * Port imagecreate to virt-install (crobinso@redhat.com)
703   * Port qcreate to virt-install (crobinso@redhat.com)
704   * Port xen creation to virt-install (crobinso@redhat.com)
705 - [FEATURE] new snippet allows for certificate-based RHN registration
706   (jim.nachlin@gawker.com)
707 - [FEATURE] Have autoyast by default behave more like RHEL, regarding networking etc.
708   (chorn@fluxcoil.net)
709 - [BUGFIX] sles patches (chorn@fluxcoil.net)
710 - [BUGFIX] Simple fix for issue where memtest entries were not getting created after
711   installing memtest86+ and doing a cobbler sync (rharriso@redhat.com)
712 - [BUGFIX] REMOTE_ADDR was not being set in the arguments in calls to CobblerSvc
713   instance causing ip address not to show up in install.log.
714   (jweber@cofront.net)
715 - [BUGFIX] add missing import of shutil (aparsons@redhat.com)
716 - [BUGFIX] add a sample kickstart file for ESXi (aparsons@redhat.com)
717 - [BUGFIX] the ESXi installer allows two nameservers to be defined (aparsons@redhat.com)
718 - [BUGFIX] close file descriptors on backgrounded processes to avoid hanging %%pre
719   (aparsons@redhat.com)
720 - [BUGFIX] rsync copies the repositories with --delete hence deleting everyhting local
721   that isn't on the source server. The createrepo then creates (following the
722   default settings) a cache directory ... which is deleted by the next rsync
723   run. Putting the cache directory in the rsync exclude list avoids this
724   deletion and speeds up running reposync dramatically. (niels@basjes.nl)
725 - [BUGFIX] Properly blame SELinux for httpd_can_network_connect type errors on initial
726   setup. (michael.dehaan@gmail.com)
727 - fix install=... kernel parameter when importing a SUSE distro (ug@suse.de)
728 - [BUGFIX] Force Django to use the system's TIME_ZONE by default.
729   (jorgen.maas@gmail.com)
730 - [FEATURE] Separated check for permissions from file existence check.
731   (aaron.peschel@gmail.com)
732 - [BUGFIX] If the xendomain symlink already exists, a clearer error will be produced.
733   (aaron.peschel@gmail.com)
734 - [FEATURE] Adding support for ESXi5, and fixing a few minor things (like not having a
735   default kickstart for esxi4) Todos:   * The esxi*-ks.cfg files are empty, and
736   need proper kickstart templates   * Import bug testing and general kickstart
737   testing (jimi@sngx.net)
738 - [FEATURE] Adding basic support for gPXE (jimi@sngx.net)
739 - [FEATURE] Add arm as a valid architecture. (chuck.short@canonical.com)
740 - [SECURITY] Changes PYTHON_EGG_CACHE to a safer path owned just by the webserver.
741   (chuck.short@canonical.com)
742 - [BUGFIX] koan: do not include ks_meta args when obtaining tree When obtaining the tree
743   for Ubuntu machines, ensure that ks_meta args are not passed as part of the
744   tree if they exist. (chuck.short@canonical.com)
745 - [FEATURE] koan: Use grub2 for --replace-self instead of grubby The koan option
746   '--replace-self' uses grubby, which relies on grub1, to replace a local
747   installation by installing the new kernel/initrd into grub menu entries.
748   Ubuntu/Debian no longer uses it grub1. This patch adds the ability to use
749   grub2 to add the kernel/initrd downloaded to a menuentry. On reboot, it will
750   boot from the install kernel reinstalling the system. Fixes (LP: #766229)
751   (chuck.short@canonical.com)
752 - [BUGFIX] Fix reposync missing env variable for debmirror  Fixes missing HOME env
753   variable for debmirror by hardcoding the environment variable  to
754   /var/lib/cobbler (chuck.short@canonical.com)
755 - [BUGFIX] Fix creation of repo mirror when importing iso. Fixes the creation of a
756   disabled repo mirror when importing ISO's such as the mini.iso that does not
757   contain any mirror/packages. Additionally, really enables 'apt' as possible
758   repository. (chuck.short@canonical.com)
759 - [BUGFIX] adding default_template_type to settings.py, caused some issues with
760   templar when the setting was not specified in the /etc/cobbler/settings
761   (jimi@sngx.net)
762 - [BUGFIX] fix for following issue: can't save networking options of a system
763   in cobbler web interface. (#8) (jimi@sngx.net)
764 - [BUGFIX] Add a new setting to force CLI commands to use the localhost for xmlrpc
765   (chjohnst@gmail.com)
766 - [BUGFIX] Don't blow up on broken links under /var/www/cobbler/links
767   (jeffschroeder@computer.org)
768 - [SECURITY] Making https the default for the cobbler web GUI. Also modifying the cobbler-
769   web RPM build to require mod_ssl and mod_wsgi (missing wsgi was an oversight,
770   just correcting it now) (jimi@sngx.net)
771 - [FEATURE] Adding authn_pam. This also creates a new setting - authn_pam_service, which
772   allows the user to configure which PAM service they want to use for cobblerd.
773   The default is the 'login' service (jimi@sngx.net)
774 - [SECURITY] Change in cobbler.spec to modify permissions on webui sessions directory to
775   prevent non-privileged user acccess to the session keys (jimi@sngx.net)
776 - [SECURITY] Enabling CSRF protection for the web interface (jimi@sngx.net)
777 - [SECURITY] Convert all yaml loads to safe_loads for security/safety reasons.
778   https://bugs.launchpad.net/ubuntu/+source/cobbler/+bug/858883 (jimi@sngx.net)
779 - [FEATURE] Added the setting 'default_template_type' to the settings file, and created
780   logic to use that in Templar().render(). Also added an option to the same
781   function to pass the template type in as an argument. (jimi@sngx.net)
782 - [FEATURE] Initial commit for adding support for other template languages, namely jinja2
783   in this case (jimi@sngx.net)
784
785 * Tue Nov 15 2011 Scott Henson <shenson@redhat.com> 2.2.2-1
786 - Changelog update (shenson@redhat.com)
787 - Fixed indentation on closing tr tag (gregswift@gmail.com)
788 - Added leader column to the non-generic tables so that all tables have the
789   same layout. It leaves room for a checkbox and multiple selects i nthese
790   other tables as well. (gregswift@gmail.com)
791 - Added action class to the event log link to bring it inline with other table
792   functions (gregswift@gmail.com)
793 - buildiso bugfix: overriding dns nameservers via the dns kopt now works.
794   reported by Simon Woolsgrove <simon@woolsgrove.com> (jorgen.maas@gmail.com)
795 - Fix for pxegen, where an image without a distro could cause a stack dump on
796   cobbler sync (jimi@sngx.net)
797 - Added initial support for specifying the on-disk format of virtual disks,
798   currently supported for QEMU only when using koan (jimi@sngx.net)
799 - Add fedora16, rawhide, opensuse 11.2, 11.3, 11.4 and 12.1 to codes.py This
800   should also fix ticket #611 (jorgen.maas@gmail.com)
801 - Use VALID_OS_VERSIONS from codes.py in the redhat importer.
802   (jorgen.maas@gmail.com)
803 - Cleanup: use utils.subprocess_call in services.py (jorgen.maas@gmail.com)
804 - Cleanup: use utils.subprocess_call in remote.py. (jorgen.maas@gmail.com)
805 - Cleanup: use utils.subprocess_call in scm_track.py. Also document that 'hg'
806   is a valid option in the settings file. (jorgen.maas@gmail.com)
807 - Dont import the sub_process module when it's not needed.
808   (jorgen.maas@gmail.com)
809 - Fixes to import_tree() to actually copy files to a safe place when
810   --available-as is specified. Also some cleanup to the debian/ubuntu import
811   module for when --available-as is specified. (jimi@sngx.net)
812 - Modification to import processes so that rsync:// works as a path. These
813   changes should also correct the incorrect linking issue where the link
814   created in webdir/links/ pointed at a directory in ks_mirror without the arch
815   specified, resulting in a broken link if --arch was specified on the command
816   line Also removed the .old import modules for debian/ubuntu, which were
817   replaced with the unified manage_import_debian_ubuntu.py (jimi@sngx.net)
818 - cleanup: use codes.VALID_OS_VERSIONS in the freebsd importer
819   (jorgen.maas@gmail.com)
820 - cleanup: use codes.VALID_OS_VERSIONS in the debian/ubuntu importer
821   (jorgen.maas@gmail.com)
822 - Bugfix: add the /var/www/cobbler/pub directory to setup.py. Calling buildiso
823   from cobbler-web now works as expected. (jorgen.maas@gmail.com)
824 - BUGFIX: patch koan (xencreate) to correct the same issue that was broken for
825   vmware regarding qemu_net_type (jimi@sngx.net)
826 - BUGFIX: fixed issue with saving objects in the webgui failing when it was the
827   first of that object type saved. (jimi@sngx.net)
828 - Minor fix to the remote version to use the nicer extended version available
829   (jimi@sngx.net)
830 - Fix a bug in buildiso when duplicate kopt keys are used. Reported and tested
831   by Simon Woolsgrove <simon@woolsgrove.com> (jorgen.maas@gmail.com)
832 - Fix for koan, where vmwcreate.py was not updated to accept the network type,
833   causing failures. (jimi@sngx.net)
834 - Added a %post section for the cobbler-web package, which replaces the
835   SECRET_KEY field in the Django settings.py with a random string
836   (jimi@sngx.net)
837 - BUGFIX: added sign_puppet_certs_automatically to settings.py. The fact that
838   this was missing was causing failures in the the pre/post puppet install
839   modules. (jimi@sngx.net)
840 - set the auto-boot option for a virtual machine (ug@suse.de)
841 - Correction for koan using the incorrect default port for connecting to
842   cobblerd (jimi@sngx.net)
843 - config/settings: add "manage_tftpd: 1" (default setting)
844   (cristian.ciupitu@yahoo.com)
845
846 * Wed Oct 05 2011 Scott Henson <shenson@redhat.com> 2.2.1-1
847 - Import changes for systemd from the fedora spec file (shenson@redhat.com)
848
849 * Wed Oct 05 2011 Scott Henson <shenson@redhat.com> 2.2.0-1
850 - Remove the version (shenson@redhat.com)
851 - New upstream 2.2.0 release (shenson@redhat.com)
852 - Add networking snippet for SuSE systems. (jorgen.maas@gmail.com)
853 - Add a /etc/hosts snippet for SuSE systems. (jorgen.maas@gmail.com)
854 - Add a proxy snippet for SuSE systems. (jorgen.maas@gmail.com)
855 - Buildiso: make use of the proxy field (SuSE, Debian/Ubuntu).
856   (jorgen.maas@gmail.com)
857 - Rename buildiso.header to buildiso.template for consistency. Also restore the
858   local LABEL in the template. (jorgen.maas@gmail.com)
859 - Bugfix: uppercase macaddresses used in buildiso netdevice= keyword cause the
860   autoyast installer to not setup the network and thus fail.
861   (jorgen.maas@gmail.com)
862 - Buildiso: minor cleanup diff. (jorgen.maas@gmail.com)
863 - Buildiso: behaviour changed after feedback from the community.
864   (jorgen.maas@gmail.com)
865 - Build standalone ISO from the webinterface. (jorgen.maas@gmail.com)
866 - Fix standalone ISO building for SuSE, Debian and Ubuntu.
867   (jorgen.maas@gmail.com)
868 - add proxy field to field_info.py (jorgen.maas@gmail.com)
869 - Remove FreeBSD from the unix breed as it has it's own now. Also, add freebsd7
870   as it is supported until feb 2013. Minor version numbers don't make sense,
871   also removed. (jorgen.maas@gmail.com)
872 - Add a proxy field to profile and system objects. This is useful for
873   environments where systems are not allowed to make direct connections to the
874   cobbler/repo servers. (jorgen.maas@gmail.com)
875 - Introduce a "status" field to system objects. Useful in environments where
876   DTAP is required, the possible values for this field are: development,
877   testing, acceptance, production (jorgen.maas@gmail.com)
878 - Buildiso: only process profiles for selected systems. (jorgen.maas@gmail.com)
879 - Buildiso: add batch action to build an iso for selected profiles.
880   (jorgen.maas@gmail.com)
881 - Buildiso: use management interface feature. (jorgen.maas@gmail.com)
882 - Buildiso: get rid of some code duplication (ISO header).
883   (jorgen.maas@gmail.com)
884 - Buildiso: add interface to macaddr resolution. (jorgen.maas@gmail.com)
885 - Buildiso: add Debian and Ubuntu support. (jorgen.maas@gmail.com)
886 - Buildiso: select systems from the webinterface. (jorgen.maas@gmail.com)
887 - Fix an exception when buildiso is called from the webinterface.
888   (jorgen.maas@gmail.com)
889 - fix power_virsh template to check dom status before executing command.
890   (bpeck@redhat.com)
891 - if hostname is not resolvable do not fail and use that hostname
892   (msuchy@redhat.com)
893 - Removed action_import module and references to it in code to prevent future
894   confusion. (jimi@sngx.net)
895 - Fixing redirects after a failed token validation. You should now be
896   redirected back to the page you were viewing after having to log back in due
897   to a forced login. (jimi@sngx.net)
898 - Use port to access cobbler (peter.vreman@acision.com)
899 - Stripping "g" from vgs output case-insensitive runs faster
900   (mmello@redhat.com)
901 - Adding ability to create new sub-directories when saving snippets. Addresses
902   trac #634 - save new snippet fails on non existing subdir (jimi@sngx.net)
903 - Fix traceback when executing "cobbler system reboot" with no system name
904   specified Trac ticket #578 - missing check for name option with system reboot
905   (jimi@sngx.net)
906 - bind zone template writing (jcallaway@squarespace.com)
907 - Removing the duplicate lines from importing re module (mmello@redhat.com)
908 - Merge remote-tracking branch 'jimi1283/bridge-interface' (shenson@redhat.com)
909 - Modification to allow DEPRECATED options to be added as options to optparse
910   so they work as aliases (jimi@sngx.net)
911 - Re-adding the ability to generate a random mac from the webui. Trac #543
912   (Generate random mac missing from 2.x webui) (jimi@sngx.net)
913 - Merge remote-tracking branch 'jsabo/fbsdreplication' (shenson@redhat.com)
914 - Tim Verhoeven <tim.verhoeven.be@gmail.com> (Tue. 08:35) (Cobbler attachment)
915   Subject: [PATCH] Add support to koan to select type of network device to
916   emulate To: cobbler development list <cobbler-devel@lists.fedorahosted.org>
917   Date: Tue, 2 Aug 2011 14:35:21 +0200 (shenson@redhat.com)
918 - Hello, (shenson@redhat.com)
919 - scm_track: Add --all to git add options to handle deletions (tmz@pobox.com)
920 - Moved HEADER heredoc from action_buildiso.py to
921   /etc/cobbler/iso/buildiso.header (gbailey@terremark.com)
922 - Enable replication for FreeBSD (jsabo@verisign.com)
923 - Merge branch 'master' into bridge-interface (jimi@sngx.net)
924 - Remove json settings from local_get_cobbler_xmlrpc_url() (jsabo@verisign.com)
925 - 1) Moving --subnet field to --netmask 2) Created DEPRECATED_FIELDS structure
926   in field_info.py to deal with moves like this    * also applies to the
927   bonding->interface_type move for bridged interface support (jimi@sngx.net)
928 - Merge remote-tracking branch 'jimi1283/bridge-interface' (shenson@redhat.com)
929 - Fixing up some serializer module stuff:  * detecting module load errors when
930   trying to deserialize collections  * added a what() function to all the
931   serializer modules for ID purposes  * error detection for mongo stuff,
932   including pymongo import problems as well as connection issues
933   (jimi@sngx.net)
934 - Cleanup of bonding stuff in all files, including webui and koan. Additional
935   cleanup in the network config scripts, and re-added the modprobe.conf
936   renaming code to the post install network config. (jimi@sngx.net)
937 - Initial rework to allow bridge/bridge slave interfaces Added static route
938   configuration to pre_install_network_config Major cleanup/reworking of
939   post_install_network_config script (jimi@sngx.net)
940 - Fix for bad commit of some json settings test (jimi@sngx.net)
941 - Merge remote-tracking branch 'jsabo/fbsdimport' (shenson@redhat.com)
942 - Adding initial support for FreeBSD media importing (jsabo@verisign.com)
943 - Setting TIME_ZONE to None in web/settings.py causes a 500 error on a RHEL5
944   system with python 2.4 and django 1.1. Commenting out the config line has the
945   same effect as setting it to None, and prevents the 500. (jimi@sngx.net)
946 - Fixes for importing RHEL6:  * path_tail() was previously moved to utils, a
947   couple    places in the import modules still used self.path_tail    instead
948   of utils.path_tail, causing a stack dump  * Fixed an issue in
949   utils.path_tail(), which was using self.    still from when it was a member
950   of the import class  * When mirror name was set on import and using
951   --available-as,    it was appending a lot of junk instead of just using the
952   specified    mirror name (jimi@sngx.net)
953 - Merge branch 'master' of git://git.fedorahosted.org/cobbler (jimi@sngx.net)
954 - Fix a quick error (shenson@redhat.com)
955 - Set the tftpboot dir for rhel6 hosts (jsabo@verisign.com)
956 - Fixed a typo (jorgen.maas@gmail.com)
957 - Added an extra field in the system/interface item. The field is called
958   "management" and should be used to identify the management interface, this
959   could be useful information for multihomed systems. (jorgen.maas@gmail.com)
960 - In the event log view the data/time field got wrapped which is very annoying.
961   Fast fix for now, i'm pretty sure there are better ways to do this.
962   (jorgen.maas@gmail.com)
963 - Event log soring on date reverted, let's sort on id instead. Reverse over
964   events in the template. Convert gmtime in the template to localtime.
965   (jorgen.maas@gmail.com)
966 - Sort the event log by date/time (jorgen.maas@gmail.com)
967 - Remove some unsupported OS versions from codes.py (jorgen.maas@gmail.com)
968 - Some changes in the generate_netboot_iso function/code: - Users had to supply
969   all system names on the commandline which they wanted to include in the ISO
970   boot menu. This patch changes that behaviour; all systems are included by
971   default now. You can still provide an override with the --systems parameter,
972   thus making this feature more consistent with what one might expect from
973   reading the help. - While at it I tried to make the code more readable and
974   removed some unneeded iterations. - Prevent some unneeded kernel/initrd
975   copies. - You can now override ip/netmask/gateway/dns parameters with
976   corresponding kernel_options. - Fixed a bug for SuSE systems where ksdevice
977   should be netdevice. - If no ksdevice/netdevice (or equivalent) has been
978   supplied via kernel_options try to guess the proper interface to use, but
979   don't just use one if we can't be sure about it (e.g. for multihomed
980   systems). (jorgen.maas@gmail.com)
981 - Add SLES 11 to codes.py (jorgen.maas@gmail.com)
982 - Add support for Fedora15 to codes.py (jorgen.maas@gmail.com)
983 - Django uses the timezone information from web/settings.py Changing the
984   hardcoded value to None forces Django to use the systems timezone instead of
985   this hardcoded value (jorgen.maas@gmail.com)
986 - Fix cobbler replication for non-RHEL hosts. The slicing used in the
987   link_distro function didn't work for all distros. (jsabo@verisign.com)
988 - Fix vmware esx importing. It was setting the links dir to the dir the iso was
989   mounted on import (jsabo@verisign.com)
990 - Merge remote-tracking branch 'jsabo/webuifun' (shenson@redhat.com)
991 - Fix bug with esxi replication. It wasn't rsyncing the distro over if the
992   parentdir already existed. (jsabo@verisign.com)
993 - Merge branch 'master' of git://git.fedorahosted.org/cobbler (jimi@sngx.net)
994 - Initial commit for mongodb backend support and adding support for settings as
995   json (jimi@sngx.net)
996 - Web UI patches from Greg Swift applied (jsabo@verisign.com)
997 - whitespace fix (dkilpatrick@verisign.com)
998 - Fix to fix to py_tftp change to sync in bootloaders
999   (dkilpatrick@verisign.com)
1000 - Fixing a bug reported by Jonathan Sabo. (dkilpatrick@verisign.com)
1001 - Merge branch 'master' of git://git.fedorahosted.org/cobbler
1002   (dkilpatrick@verisign.com)
1003 - Revert "Jonathan Sabo <jsabo@criminal.org> (June 09) (Cobbler)"
1004   (shenson@redhat.com)
1005 - Unmount and deactivate all software raid devices after searching for ssh keys
1006   (jonathan.underwood@gmail.com)
1007 - Merge remote-tracking branch 'ugansert/master' (shenson@redhat.com)
1008 - Jonathan Sabo <jsabo@criminal.org> (June 09) (Cobbler) Subject: [PATCH] Fix
1009   issue with importing distro's on new cobbler box To: cobbler development list
1010   <cobbler-devel@lists.fedorahosted.org> Date: Thu, 9 Jun 2011 16:17:20 -0400
1011   (shenson@redhat.com)
1012 - missing manage_rsync option from config/settings (jsabo@criminal.org)
1013 - Remove left-over debugging log message (dkilpatrick@verisign.com)
1014 - SUSE requires the correct arch to find kernel+initrd on the inst-source
1015   (ug@suse.de)
1016 - added autoyast=... parameter to the ISO building code when breed=suse
1017   (ug@suse.de)
1018 - calculate meta data in the XML file without cheetah variables now
1019   (ug@suse.de)
1020 - render the cheetah template before passing the XML to the python XML parser
1021   (ug@suse.de)
1022 - made the pathes flexible to avoid problem on other distros than fedora/redhat
1023   (ug@suse.de)
1024 - bugfix (ug@suse.de)
1025 - Merge patch from stable (cristian.ciupitu@yahoo.com)
1026 - utils: initialize main_logger only when needed (cristian.ciupitu@yahoo.com)
1027 - During refactor, failed to move templater initialization into
1028   write_boot_files_distro. (dkilpatrick@verisign.com)
1029 - Fixed a couple of simple typos.  Made the boot_files support work (added
1030   template support for the key, defined the img_path attribute for that
1031   expansion) (dkilpatrick@verisign.com)
1032 - Fixes to get to the "minimally tested" level.  Fixed two syntax errors in
1033   tftpd.py, and fixed refences to api and os.path in manage_in_tftpd.py
1034   (dkilpatrick@verisign.com)
1035 - Rebasing commit, continued. (kilpatds@oppositelock.org)
1036 - Change the vmware stuff to use 'boot_files' as the space to set files that
1037   need to be available to a tftp-booting process (dkilpatrick@verisign.com)
1038 - Added 'boot_files' field for 'files that need to be put into tftpboot'
1039   (dkilpatrick@verisign.com)
1040 - Merge conflict. (kilpatds@oppositelock.org)
1041 - Add in a default for puppet_auto_setup, thanks to Camille Meulien
1042   <cmeulien@heliostech.fr> for finding it. (shenson@redhat.com)
1043 - Add a directory remap feature to fetchable_files processing.    /foo/*=/bar/
1044   Client requests for "/foo/baz" will be turned into requests for /bar/baz.
1045   Target paths are evaluated against the root filesystem, not tftpboot.
1046   Template expansion is done on "bar/baz", so that would typically more
1047   usefully be something like         /boot/*=$distro_path/boot
1048   (dkilpatrick@verisign.com)
1049 - Removed trailing whitespace causing git warnings (dkilpatrick@verisign.com)
1050 - Fix a bug where tftpd.py would throw if a client requested '/'.
1051   (dkilpatrick@verisign.com)
1052 - Allow slop in the config, not just the client.  modules: don't hardcode
1053   /tftpboot (dkilpatrick@verisign.com)
1054 - Moved footer to actually float at the bottom of the page or visible section,
1055   whichever is further down. Unfortunately leaves a slightly larger margin pad
1056   on there.  Will have to see if it can be made cleaner (gregswift@gmail.com)
1057 - Removed right padding on delete checkboxes (gregswift@gmail.com)
1058 - Adjusted all the self closing tags to end eith a " />" instead of not having
1059   a space separating them (gregswift@gmail.com)
1060 - Added "add" button to the filter bit (gregswift@gmail.com)
1061 - Removed "Enabled" label on checkboxes, this can be added via css as part of
1062   the theme if people want it using :after { content: " Enabled" } Padded the
1063   context-tip off the checkboxes so that it lines up with most of the other
1064   context tips instead of being burring in the middle of the form
1065   (gregswift@gmail.com)
1066 - Added bottom margin on text area so that it isn't as tight next to other form
1067   fields (gregswift@gmail.com)
1068 - Added id tags to the forms for ks templates and snippets Set some margins for
1069   those two forms, they were a bit scrunched because they didn't have a
1070   sectionbody fieldset and legend Removed inline formatting of input sizes on
1071   those two pages Set the textareas in those two pages via css
1072   (gregswift@gmail.com)
1073 - Made the tooltips get hiddent except for on hover, with a small image
1074   displayed in their place (gregswift@gmail.com)
1075 - Added a top margin to the submit/reset buttons... looks cleaner having some
1076   space. (gregswift@gmail.com)
1077 - Changed generic edit form to the following: - Made blocks into fieldsets
1078   again, converting the h2 to a legend.  I didn't mean to change this the first
1079   time through. - Pulled up a level, removing the wrapping div, making each
1080   fieldset contain an order list, instead of each line being an ordered list,
1081   which was silly of me. - Since it went up a level, un-indented all of the
1082   internal html tags 2 spaces - changed the place holder for the network
1083   widgets to spans so that they displayed cleanly (Don't like the spans either,
1084   but its for the javascript) In the stylesheet just changed the
1085   div.sectionbody to ol.sectionbody (gregswift@gmail.com)
1086 - Fixed closing ul->div on multiselect section. Must have missed it a few
1087   commits ago. (gregswift@gmail.com)
1088 - IE uses input styling such as borders even on checkboxes... was not intended,
1089   so has been cleared for checkboxes (gregswift@gmail.com)
1090 - This is a change to the multiselect buttons view,  i didn't mean to commit
1091   the style sheet along with the spelling check fixes, but since I did might as
1092   well do the whole thing and then erevert it later if people dislike it
1093   (gregswift@gmail.com)
1094 - Fixed another postition mispelling (gregswift@gmail.com)
1095 - fixed typo postition should be position (gregswift@gmail.com)
1096 - Returned the multiselect section to being div's, since its actually not a set
1097   of list items, it is a single list item. Re-arranged the multiselect so that
1098   the buttons are centered between the two sections Removed all of the line
1099   breaks form that section Made the select box headings actually labels moved
1100   the order of multiselect after sectionbody definition due to inheritence
1101   (gregswift@gmail.com)
1102 - Restored select boxes to "default" styling since they are not as cleanly css-
1103   able Made visibly selected action from Batch Actions bold, mainly so by
1104   default Batch Action is bold. Moved text-area and multi-select sizing into
1105   stylesheet. re-alphabetized some of the tag styles Made the default login's
1106   text inputs centered, since everything else on that page is
1107   (gregswift@gmail.com)
1108 - Added missing bracket from two commits ago in the stylesheet.
1109   (gregswift@gmail.com)
1110 - Re-added the tool tips for when they exist in the edit forms and set a style
1111   on them. Removed an extraneous line break from textareas in edit form
1112   (gregswift@gmail.com)
1113 - Fixed javascript where I had used teh wrong quotes, thus breaking the network
1114   interface widgets (gregswift@gmail.com)
1115 - Added label and span to cleanup block (gregswift@gmail.com)
1116 - Added version across all of the template loads so that the footer is
1117   populated with it (gregswift@gmail.com)
1118 - all css: - set overall default font size of 1em - added missing tags to the
1119   cleanup css block - fixed button layout -- list line buttons are smaller font
1120   to keep lines smaller -- set action input button's size - set indentation and
1121   bolding of items in batch action - redid the list formatting -- removed zebra
1122   stripes, they share the standard background now -- hover is now the
1123   background color of the old darker zebra stripe -- selected lines now
1124   background of the older light zebra stripe - added webkit border radius
1125   (gregswift@gmail.com)
1126 - generic_lists.tmpl - Removed force space on the checklists generic_lists.tmpl
1127   - Added javascript to allow for selected row highlighting
1128   (gregswift@gmail.com)
1129 - Removed inline formatting from import.tmpl Made the context tips spans
1130   (gregswift@gmail.com)
1131 - Made both filter-adder elements exist in the same li element
1132   (gregswift@gmail.com)
1133 - Added default formatting for ordered lists Added formatting for the new
1134   multiselect unordered list Changed old div definitions for the multiselect to
1135   li Added label formatting for inside sectionbody to line up all the forms.
1136   (gregswift@gmail.com)
1137 - Adjusted multiselect section to be an unordered list instead of a div
1138   (gregswift@gmail.com)
1139 - Moved the close list tag inside the for loop, otherwise we generate lots of
1140   nasty nested lists (gregswift@gmail.com)
1141 - Changed edit templates to use ol instead of ul, because it apparently helps
1142   out those using screen readers, and we should be making things accessible,
1143   yes? (gregswift@gmail.com)
1144 - Re-structured the edit templates to be unordered lists. Standardized the
1145   tooltip/contextual data as context-tip class Redid the delete setup so that
1146   its Delete->Really? Instead of Delete:Yes->Really?  Same number of check
1147   boxes. Setup the delete bit so that Delete and Really are labels for the
1148   checkboxes and there isn't extraneous html input tags (gregswift@gmail.com)
1149 - Added top margin on the filter adder (gregswift@gmail.com)
1150 - Adjusted single action item buttons to be in the same list element, as it
1151   makes alignment cleaner, and more sense from a grouping standpoint Set
1152   submenubar default height to 26px Set submenubar's alignment to be as clean
1153   as I've been able to get so far. (gregswift@gmail.com)
1154 - Set background color back to original (gregswift@gmail.com)
1155 - Adjusted all buttons to hover invert from blue to-blackish, the inverse of
1156   the normal links (which go blackish to blue) but left the text color the
1157   same.  i'm not sure its as pretty, but dfinately more readable.  Plus the
1158   color change scheme is more consistant. Also made table buttons smaller than
1159   other buttons (gregswift@gmail.com)
1160 - Fixed width on paginate select boxes to auto, instead of over 200px
1161   (gregswift@gmail.com)
1162 - Removed margin around hr tag, waste of space, and looks closer to original
1163   now (gregswift@gmail.com)
1164 - Removed extraneous body div by putting user div inside container.
1165   (gregswift@gmail.com)
1166 - Adjuested style sheet to improve standardization of form fields, such as
1167   buttons, text input widths, and fontsizes in buttons vs drop downs.
1168   (gregswift@gmail.com)
1169 - Some menu re-alignment on both menubar and submenubar (gregswift@gmail.com)
1170 - Got the container and the user display into a  cleaner size alignment to
1171   display on the screen.  less chance of horiz scroll (gregswift@gmail.com)
1172 - Fix to get login form a bit better placed without duplicate work
1173   (gregswift@gmail.com)
1174 - pan.action not needed... .action takes care of it (gregswift@gmail.com)
1175 - Removed padding on login screen (gregswift@gmail.com)
1176 - Redid action and button classes to make them look like buttons.. still needs
1177   work. Resized pointer classes to make things a bit more level on that row
1178   (gregswift@gmail.com)
1179 - New cleanup at the top negates the need for this table entry
1180   (gregswift@gmail.com)
1181 - Removed the body height to 99%.  Was doing this for sticky footer, but
1182   current path says its not needed (gregswift@gmail.com)
1183 - Added some windows and mac default fonts Made the body relative, supposed to
1184   help with the layout Set text color to slightly off black.. was told there is
1185   some odd optical reasoning behind this (gregswift@gmail.com)
1186 - Made class settings for the table rows a touch more specific in the css
1187   (gregswift@gmail.com)
1188 - Added "normalization" to clean up cross browser differences at top of
1189   style.css (gregswift@gmail.com)
1190 - Added button class to all buttons, submit, and resets (gregswift@gmail.com)
1191 - Fixed sectionheader to not be styled as actions... they are h2!
1192   (gregswift@gmail.com)
1193 - Fixed container reference from class to id (gregswift@gmail.com)
1194 - Added missing action class on the "Create new" links in generic_list.tmpl
1195   (gregswift@gmail.com)
1196 - Revert part of 344969648c1ce1e753af because RHEL5's django doesn't support
1197   that (gregswift@gmail.com)
1198 - removed underline on remaing links (gregswift@gmail.com)
1199 - Fixed the way the logo was placed on the page and removed the excess
1200   background setting. (gregswift@gmail.com)
1201 - Some cleanup to the style sheet along - removed fieldset since no more exist
1202   (not sure about this in long run.... we'll see) - cleaned up default style
1203   for ul cause it was causing override issues - got menubar and submenu bar
1204   mostly settled (gregswift@gmail.com)
1205 - Fixed submenu bar ul to be identified by id not class (gregswift@gmail.com)
1206 - Rebuilt primary css stylesheet - not complete yet (gregswift@gmail.com)
1207 - Removed logout from cobbler meft hand menu (gregswift@gmail.com)
1208 - Next step in redoing layout: - added current logged in user and logout button
1209   to a div element at top of page - fixed content div from class to id - added
1210   footer (version entry doesn't work for some reason) - links to cobbler
1211   website (gregswift@gmail.com)
1212 - in generic_list.tmpl - set the edit link to class 'action' - merged the
1213   creation of the edit action 'View kickstart' for system and profile
1214   (gregswift@gmail.com)
1215 - Replaced tool tip as div+em with a span classed as tooltip. tooltip class
1216   just adds italic. (gregswift@gmail.com)
1217 - Fixed table header alignment to left (gregswift@gmail.com)
1218 - Take the logo out of the html, making it a css element, but retain the
1219   location and basic feel of the placement. (gregswift@gmail.com)
1220 - Step one of redoing the action list, pagination and filters. - split
1221   pagination and filters to two tmpl files - pagination can be called on its
1222   own (so it can live in top and bottom theoretically) - filter will eventually
1223   include pagination so its on the bottom - new submenubar includes pagination
1224   - new submenubar does age specific actiosn as links instead of drop downs
1225   cause there is usually 1, rarely 2, never more. (gregswift@gmail.com)
1226 - Removed pagination from left hand column (gregswift@gmail.com)
1227 - Removed an erroneous double quote from master.tmpl (gregswift@gmail.com)
1228 - Went a bit overboard and re-adjusted whitespace in all the templates. Trying
1229   to do the code in deep blocks across templates can be a bit tedious and
1230   difficult to maintain. While the output is not perfect, at least the
1231   templates are more readable. (gregswift@gmail.com)
1232 - Removed remaining vestige of action menu shading feature
1233   (gregswift@gmail.com)
1234 - Removed header shade references completely from the lists and the code from
1235   master.tmpl (gregswift@gmail.com)
1236 - Wrapped setting.tmpl error with the error class (gregswift@gmail.com)
1237 - Changed h3 to h2 inside pages Made task_created's h4 into a h1 and
1238   standarized with the other pages (gregswift@gmail.com)
1239 - Standardized header with a hr tag before the form tags (gregswift@gmail.com)
1240 - Added base width on the multiple select boxes, primarily for when they are
1241   empty (gregswift@gmail.com)
1242 - Removed fieldset wrappers and replaced legends with h1 and h2 depending on
1243   depth (gregswift@gmail.com)
1244 - Adjusted logic for the legent to only change one word, instead of the full
1245   string (gregswift@gmail.com)
1246 - Removed empty cell from table in generic_edit.tmpl (gregswift@gmail.com)
1247 - Revert 8fed301e61f28f8eaf08e430869b5e5df6d02df0 because it was to many
1248   different changes (gregswift@gmail.com)
1249 - Removed empty cell from table in generic_edit.tmpl (gregswift@gmail.com)
1250 - Moved some cobbler admin and help menus to a separate menu in the menubar
1251   (gregswift@gmail.com)
1252 - Added HTML5 autofocus attribute to login.tmpl.  Unsupported browsers just
1253   ignores this. (gregswift@gmail.com)
1254 - Re-built login.tmpl: - logo isn't a link anymore back to the same page - logo
1255   is centered with the login form - fieldset has been removed - set a css class
1256   for the body of the login page, unused for now. And the css: - removed the
1257   black border from css - centered the login button as well
1258   (gregswift@gmail.com)
1259 - Made the links and span.actions hover with the same color as used for the
1260   section headings (gregswift@gmail.com)
1261 - Removed as much in-HTML placed formatting as possible and implemented them in
1262   css. The main bit remaining is the ul.li floats in paginate.tmpl
1263   (gregswift@gmail.com)
1264 - Cleaned up single tag closing for several of the checkboxes
1265   (gregswift@gmail.com)
1266 - removed a trailing forward slash that was creating an orphaned close span tag
1267   (gregswift@gmail.com)
1268 - Relabeled cells in thead row from td tags to th (gregswift@gmail.com)
1269 - Added tr wrapper inside thead of tables for markup validation
1270   (gregswift@gmail.com)
1271 - Use :// as separator for virsh URIs (atodorov@otb.bg)
1272 - Create more condensed s390 parm files (thardeck@suse.de)
1273 - Add possibility to interrupt zPXE and to enter CMS (thardeck@suse.de)
1274 - Cleanup the way that we download content  - Fixes a bug where we were only
1275   downloading grub-x86_64.efi (shenson@redhat.com)
1276 - Port this config over as well (shenson@redhat.com)
1277 - Only clear logs that exist. (bpeck@redhat.com)
1278 - Pull in new configs from the obsoletes directory. (shenson@redhat.com)
1279 - Removed extraneous close row tag from events.tmpl (gregswift@gmail.com)
1280 - Fixed spelling of receive in enoaccess.tmpl (gregswift@gmail.com)
1281 - Added missing close tags on a few menu unordered list items in master.tmpl
1282   (gregswift@gmail.com)
1283 - Added missing "for" correlation tag for labels in generic_edit.tmpl
1284   (gregswift@gmail.com)
1285 - Removed extraneous close divs from generic_edit.tmpl (gregswift@gmail.com)
1286 - Removing old and unused template files (gregswift@gmail.com)
1287 - Add support for Ubuntu distros. (andreserl@ubuntu.com)
1288 - Koan install tree path for Ubuntu/Debian distros. (andreserl@ubuntu.com)
1289 - Fixing hardlink bin path. (andreserl@ubuntu.com)
1290 - Do not fail when yum python module is not present. (andreserl@ubuntu.com)
1291 - Add Ubuntu/Debian support to koan utils for later use. (andreserl@ubuntu.com)
1292 - typo in autoyast xml parsing (ug@suse.de)
1293 - Minor change to validate a token before checking on a user. (jimi@sngx.net)
1294 - get install tree from install=... parameter for SUSE (ug@suse.de)
1295 - handle autoyast XML files (ug@suse.de)
1296 - fixed support for SUSE in build-iso process. Fixed a typo (ug@suse.de)
1297 - added SUSE breed to import-webui (ug@suse.de)
1298 - Merge remote-tracking branch 'lanky/master' (shenson@redhat.com)
1299 - Merge remote-tracking branch 'jimi1283/master' (shenson@redhat.com)
1300 - added support for suse-distro import (ug@suse.de)
1301 - Fix a sub_process Popen call that did not set close_fds to true. This causes
1302   issues with sync where dhcpd keeps the XMLRPC port open and prevents cobblerd
1303   from restarting (jimi@sngx.net)
1304 - Cleanup of unneccsary widgets in distro/profile. These needed to be removed
1305   as part of the multiselect change. (jimi@sngx.net)
1306 - Yet another change to multiselect editing. Multiselects are now presented as
1307   side-by-side add/delete boxes, where values can be moved back and forth and
1308   only appear in one of the two boxes. (jimi@sngx.net)
1309 - Fix for django traceback when logging into the web interface with a bad
1310   username and/or password (jimi@sngx.net)
1311 - Fix for snippet/kickstart editing via the web interface, where a 'tainted
1312   file path' error was thrown (jimi@sngx.net)
1313 - added the single missed $idata.get() item (stuart@sjsears.com)
1314 - updated post_install_network_config to use $idata.get(key, "") instead of
1315   $idata[key]. This stops rendering issues with the snippet when some keys are
1316   missing (for example after an upgrade from 2.0.X to 2.1.0, where a large
1317   number of new keys appear to have been added.) and prevents us from having to
1318   go through all system records and add default values for them.
1319   (stuart@sjsears.com)
1320 - Take account of puppet_auto_setup in install_post_puppet.py
1321   (jonathan.underwood@gmail.com)
1322 - Take account of puppet_auto_setup in install_pre_puppet.py
1323   (jonathan.underwood@gmail.com)
1324 - Add puppet snippets to sample.ks (jonathan.underwood@gmail.com)
1325 - Add puppet_auto_setup to settings file (jonathan.underwood@gmail.com)
1326 - Add snippets/puppet_register_if_enabled (jonathan.underwood@gmail.com)
1327 - Add snippets/puppet_install_if_enabled (jonathan.underwood@gmail.com)
1328 - Add configuration of puppet pre/post modules to settings file
1329   (jonathan.underwood@gmail.com)
1330 - Add install_post_puppet.py module (jonathan.underwood@gmail.com)
1331 - Add install_pre_puppet.py module (jonathan.underwood@gmail.com)
1332 - Apply a fix for importing red hat distros, thanks jsabo (shenson@redhat.com)
1333 - Changes to action/batch actions at top of generic list pages * move logic
1334   into views, where it belongs * simplify template code * change actions/batch
1335   actions into drop down select lists * added/modified javascript to deal with
1336   above changes (jimi@sngx.net)
1337 - Minor fixes to cobbler.conf, since the AliasMatch was conflicting with the
1338   WSGI script alias (jimi@sngx.net)
1339 - Initial commit for form-based login and authentication (jimi@sngx.net)
1340 - Convert webui to use WSGI instead of mod_python (jimi@sngx.net)
1341 - Save field data in the django user session so the webui doesn't save things
1342   unnecessarily (jimi@sngx.net)
1343 - Make use of --format in git and use the short hash. Thanks Todd Zullinger
1344   <tmz@pobox.com> (shenson@redhat.com)
1345 - We need git. Thanks to Luc de Louw <luc@delouw.ch> (shenson@redhat.com)
1346 - Start of the change log supplied by Michael MacDonald <mjmac@macdonald.cx>
1347   (shenson@redhat.com)
1348 - Fix typo in cobbler man page entry for profile (jonathan.underwood@gmail.com)
1349 - Fix cobbler man page entry for parent profile option
1350   (jonathan.underwood@gmail.com)
1351 - Set SELinux context of host ssh keys correctly after reinstallation
1352   (jonathan.underwood@gmail.com)
1353 - Fixing bug with img_path.  It was being used prior to being set if you have
1354   images. (jonathan.sabo@gmail.com)
1355 - Add firstboot install trigger mode (jonathan.sabo@gmail.com)
1356 - Fix old style shell triggers by checking for None prior to adding args to arg
1357   list and fix indentation (jonathan.sabo@gmail.com)
1358 - Bugfix: restore --no-fail functionality to CLI reposync
1359   (icomfort@stanford.edu)
1360 - Add the ability to replicate the new object types (mgmtclass,file,package).
1361   (jonathan.sabo@gmail.com)
1362 - Add VMware ESX and ESXi replication. (jonathan.sabo@gmail.com)
1363 - Add batch delete option for profiles and mgmtclasses
1364   (jonathan.sabo@gmail.com)
1365 - Spelling fail (shenson@redhat.com)
1366 - Remove deploy as a valid direct action (shenson@redhat.com)
1367 - Trac Ticket #509: A fix that does not break everything else.
1368   (https://fedorahosted.org/cobbler/ticket/509) (andrew@eiknet.com)
1369 - Only chown the file if it does not already exist (shenson@redhat.com)
1370 - Modification to cobbler web interface, added a drop-down select box for
1371   management classes and some new javascript to add/remove items from the
1372   multi-select (jimi@sngx.net)
1373 - Check if the cachedir exists before we run find on it. (shenson@redhat.com)
1374 - Fix trac#574 memtest (shenson@redhat.com)
1375 - Add network config snippets for esx and esxi network configuration
1376   $SNIPPET('network_config_esxi') renders to: (jonathan.sabo@gmail.com)
1377 - Trac Ticket #510: Modified 'cobbler buildiso' to use
1378   /var/cache/cobbler/buildiso by default. Added a /etc/cobbler/settings value
1379   of 'buildisodir' to make it setable by the end user. --tempdir will still
1380   overwrite either setting on the command line. (andrew@eiknet.com)
1381 - Add img_path to the metadata[] so that it's rendered out in the esxi pxe
1382   templates. Add os_version checks for esxi in kickstart_done so that it uses
1383   wget or curl depending on what's known to be available.
1384   (jonathan.sabo@gmail.com)
1385 - Added --sync-all option to cobbler replicate which forces all systems,
1386   distros, profiles, repos and images to be synced without specifying each.
1387   (rrr67599@rtpuw027.corpnet2.com)
1388 - Added manage_rsync option which defaults to 0. This will make cobbler not
1389   overwrite a local rsyncd.conf unless enabled.
1390   (rrr67599@rtpuw027.corpnet2.com)
1391 - Added semicolon master template's placement of the arrow in the page heading
1392   (gregswift@gmail.com)
1393 - Quick fix from jsabo (shenson@redhat.com)
1394 - added hover line highlighting to table displays (gregswift@gmail.com)
1395 - Modification to generic_edit template so that the name field is not a text
1396   box when editing. (jimi@sngx.net)
1397 - Minor fixes for mgmt classes webui changes. - Bug when adding a new obj,
1398   since obj is None it was causing a django stack dump - Minor tweaks to
1399   javascript (jimi@sngx.net)
1400 - Fixed error in which the json files for mgmtclasses was not being deleted
1401   when a mgmtclass was removed, meaning they showed back up the next time
1402   cobblerd was restarted (jimi@sngx.net)
1403 - Fixed syntax error in clogger.py that was preventing cobblerd from starting
1404   (jimi@sngx.net)
1405 - Supports an additional initrd from kernel_options. (bpeck@redhat.com)
1406 - Remove a bogus self (shenson@redhat.com)
1407 - Re-enable debmirror. (chuck.short@canonical.com)
1408 - Extending the current Wake-on-Lan support for wider distro compatibility.
1409   Thanks to Dustin Kirkland. (chuck.short@canonical.com)
1410 - Dont hardcode /etc/rc.d/init.d redhatism. (chuck.short@canonical.com)
1411 - Newer (pxe|sys)linux's localboot value produces unreliable results when using
1412   documented options, -1 seems to provide the best supported value
1413   (chuck.short@canonical.com)
1414 - Detect the webroot to be used based on the distro.
1415   (chuck.short@canonical.com)
1416 - If the logfile path doesn't exist, don't attempt to create the log file.
1417   Mainly needed when cobbler is required to run inside the build env
1418   (cobbler4j). Thanks to Dave Walker <DaveWalker@ubuntu.com>
1419   (chuck.short@canonical.com)
1420 - Implement system power status API method and CLI command (crosa@redhat.com)
1421 - Update setup files to use proper apache configuration path
1422   (konrad.scherer@windriver.com)
1423 - Debian has www-data user for web server file access instead of apache.
1424   (konrad.scherer@windriver.com)
1425 - Update init script to work under debian. (konrad.scherer@windriver.com)
1426 - Use lsb_release module to detect debian distributions. Debian release is
1427   returned as a string because it could be sid which will never have a version
1428   number. (konrad.scherer@windriver.com)
1429 - Fix check for apache installation (konrad.scherer@windriver.com)
1430 - Handle Cheetah version with more than 3 parts (konrad.scherer@windriver.com)
1431 - Allow dlcontent to use proxy environment variables (shenson@redhat.com)
1432 - Copy memtest to $bootloc/images/.  Fixes BZ#663307 (shenson@redhat.com)
1433 - Merge remote branch 'jimi1283/master' (shenson@redhat.com)
1434 - Turn the cheetah version numbers into integers while testing them so we don't
1435   always return true (shenson@redhat.com)
1436 - Kill some whitespace (shenson@redhat.com)
1437 - Fix for bug #587 - Un-escaped '$' in snippet silently fails to render
1438   (jimi@sngx.net)
1439 - Fix for bug #587 - Un-escaped '$' in snippet silently fails to render
1440   (jimi@sngx.net)
1441 - Merge branch 'master' of git://git.fedorahosted.org/cobbler (jimi@sngx.net)
1442 - Don't use link caching in places it isn't needed (shenson@redhat.com)
1443 - Better logging on subprocess calls (shenson@redhat.com)
1444 - Fix for trac #541 - cobbler sync deletes /var/www/cobbler/pub (jimi@sngx.net)
1445 - Merged work in the import-modules branch with the debian/ubuntu modules
1446   created by Chuck Short (jimi@sngx.net)
1447 - Merge branch 'cshort' into import-modules (jimi@sngx.net)
1448 - Finished up debian/ubuntu support for imports Tweaked redhat/vmware import
1449   modules logging output Added rsync function to utils to get it out of each
1450   module  - still need to fix the redhat/vmware modules to actually use this
1451   (jimi@sngx.net)
1452 - Initial commit for the Debian import module. * tested against Debian squeeze.
1453   (chuck.short@canonical.com)
1454 - Initial commit for the Ubuntu import module. * tested against Natty which
1455   imported successfully. (chuck.short@canonical.com)
1456 - tftp-hpa users for both Ubuntu Debian use /var/lib/tftpboot.
1457   (chuck.short@canonical.com)
1458 - Disable the checks that are not really valid for Ubuntu or Debian.
1459   (chuck.short@canonical.com)
1460 - Add myself to the authors file. (chuck.short@canonical.com)
1461 - Updates for debian/ubuntu support in import modules (jimi@sngx.net)
1462 - Fix a problem with cheetah >= 2.4.2 where the snippets were causing errors,
1463   particularly on F14 due to its use of cheetah 2.4.3. (shenson@redhat.com)
1464 - Initial commit of the Ubuntu import module (jimi@sngx.net)
1465 - Merge remote branch 'jimi1283/import-modules' (shenson@redhat.com)
1466 - Merge remote branch 'jimi1283/master' (shenson@redhat.com)
1467 - Extended ESX/ESXi support * Fixed release detection for both ESX and ESXi *
1468   Added support to kickstart_finder() so that the fetchable_files list gets
1469   filled out when the distro is ESXi (jimi@sngx.net)
1470 - Fixed distro_adder() in manage_import_vmware so ESXi gets imported properly
1471   (jimi@sngx.net)
1472 - Initial commit for the VMWare import module * tested against esx4 update 1,
1473   which imported successfully (jimi@sngx.net)
1474 - Minor style changes for web css * darken background slightly so the logo
1475   doesn't look washed out * make text input boxes wider (jimi@sngx.net)
1476 - Fix for the generic_edit function for the web page. The choices field for
1477   management classes was not being set for distros/profiles - only systems,
1478   causing a django stack dump (jimi@sngx.net)
1479 - modify keep_ssh_host_keys snippet to use old keys during OS installation
1480   (flaks@bnl.gov)
1481 - Merge remote branch 'jimi1283/master' (shenson@redhat.com)
1482 - Added replicate to list of DIRECT_ACTIONS, so it shows up in the --help
1483   output (jimi@sngx.net)
1484 - Merge branch 'master' into import-modules (jimi@sngx.net)
1485 - Merge branch 'master' of git://git.fedorahosted.org/cobbler (jimi@sngx.net)
1486 - Some fixes to the manage_import_redhat module * stop using mirror_name for
1487   path stuff - using self.path instead * fixed rsync command to use self.path
1488   too, this should really be made a global somewhere else though
1489   (jimi@sngx.net)
1490 - Add synopsis entries to man page to enable whatis command
1491   (kirkland@ubuntu.com)
1492 - Add "ubuntu" as detected distribution. (clint@ubuntu.com)
1493 - Fix for redhat import module.  Setting the kickstart file with a default
1494   value was causing some issues later on with the kickstart_finder() function,
1495   which assumes all new profiles don't have a kickstart file yet
1496   (jimi@sngx.net)
1497 - Fix for non x86 arches, bug and fix by David Robinson <zxvdr.au@gmail.com>
1498   (shenson@redhat.com)
1499 - Don't die when we find deltas, just don't use them (shenson@redhat.com)
1500 - Merge remote branch 'khightower/khightower/enhanced-configuration-management'
1501   (shenson@redhat.com)
1502 - By: Bill Peck <bpeck@redhat.com> exclude initrd.addrsize as well.  This
1503   affects s390 builds (shenson@redhat.com)
1504 - Fix an issue where an item was getting handed to remove_item instead of the
1505   name of the item.  This would cause an exception further down in the stack
1506   when .lower() was called on the object (by the call to get_item).
1507   (shenson@redhat.com)
1508 - Add a check to make sure system is in obj_types before removing it. Also
1509   remove an old FIXME that this previously fixed (shenson@redhat.com)
1510 - Fix regression in 2.0.8 that dumped  into pxe cfg files (shenson@redhat.com)
1511 - Initial commit of import module for redhat (jimi@sngx.net)
1512 - Merge branch 'master' of git://git.fedorahosted.org/cobbler (jimi@sngx.net)
1513 - Added new modules for copying a distros's fetchable files to the
1514   /tftpboot/images directory   - add_post_distro_tftp_copy_fetchable_files.py
1515   copies on an add/edit   - sync_post_tftp_copy_fetchable_files.py copies the
1516   files for ALL distros on a full sync (jimi@sngx.net)
1517 - Removed trailing '---' from each of the PXE templates for ESXi, which causes
1518   PXE issues (jimi@sngx.net)
1519 - Make stripping of "G" from vgs output case-insensitive
1520   (heffer@fedoraproject.org)
1521 - Replace rhpl with ethtool (heffer@fedoraproject.org)
1522 - Add --force-path option to force overwrite of virt-path location
1523   (pryor@bnl.gov)
1524 - item_[profile|system] - update parents after editing (mlevedahl@gmail.com)
1525 - collection.py - rename rather than delete mirror dirs (mlevedahl@gmail.com)
1526 - Wil Cooley <wcooley@nakedape.cc> (shenson@redhat.com)
1527 - Merge remote branch 'kilpatds/io' (shenson@redhat.com)
1528 - Add additional qemu_driver_type parameter to start_install function
1529   (Konrad.Scherer@windriver.com)
1530 - Add valid debian names for releases (Konrad.Scherer@windriver.com)
1531 - Add debian preseed support to koan (Konrad.Scherer@windriver.com)
1532 - Add support for EFI grub booting. (dgoodwin@rm-rf.ca)
1533 - Turn the 'daemonize I/O' code back on.  cobbler sync seems to still work
1534   (dkilpatrick@verisign.com)
1535 - Fix some spacing in the init script (dkilpatrick@verisign.com)
1536 - Added a copy-default attribute to koan, to control the params passed to
1537   grubby (paji@redhat.com)
1538 - Turn on the cache by default Enable a negative cache, with a shorter timeout.
1539   Use the cache for normal lookups, not much ip-after-failed.
1540   (dkilpatrick@verisign.com)
1541 - no passing full error message.  Der (dkilpatrick@verisign.com)
1542 - Pull the default block size into the template, since that can need to be
1543   changed. Make tftpd.py understand -B for compatibility.  Default to a smaller
1544   mtu, for vmware compatibility. (dkilpatrick@verisign.com)
1545 - in.tftpd needs to be run as root.  Whoops (dkilpatrick@verisign.com)
1546 - Handle exceptions in the idle-timer handling.  This could cause tftpd.py to
1547   never exit (dkilpatrick@verisign.com)
1548 - Do a better job of handling things when a logger doesn't exist. And don't try
1549   and find out what the FD is for logging purposes when I know that might throw
1550   and I won't catch it. (dkilpatrick@verisign.com)
1551 - Scott Henson pointed out that my earlier changes stopped a sync from also
1552   copying kernel/initrd files into the web directry.  Split out the targets
1553   from the copy, and make sure that sync still copies to webdir, and then also
1554   fixed where I wasn't copying those files in the synclite case.
1555   (dkilpatrick@verisign.com)
1556 - Put back code that I removed incorrectly. (sync DHCP, DNS)
1557   (dkilpatrick@verisign.com)
1558 - Support installing FreeBSD without an IP address set in the host record.
1559   (dkilpatrick@verisign.com)
1560 - Fixed some bugs in the special-case handling code, where I was not properly
1561   handling kernel requests, because I'd merged some code that looked alike, but
1562   couldn't actually be merged. (dkilpatrick@verisign.com)
1563 - fixing koan to use cobblers version of os_release which works with RHEL 6
1564   (jsherril@redhat.com)
1565 - Adding preliminary support for importing ESXi for PXE booting (jimi@sngx.net)
1566 - Fix cobbler check tftp typo. (dgoodwin@rm-rf.ca)
1567 - buildiso now builds iso's that include the http_port setting (in
1568   /etc/cobbler/settings) in the kickstart file url
1569   (maarten.dirkse@filterworks.com)
1570 - Add check detection for missing ksvalidator (dean.wilson@gmail.com)
1571 - Use shlex.split() to properly handle a quoted install URL (e.g. url
1572   --url="http://example.org") (jlaska@redhat.com)
1573 - Update codes.py to accept 'fedora14' as a valid --os-version
1574   (jlaska@redhat.com)
1575 - No more self (shenson@redhat.com)
1576 - Don't die if a single repo fails to sync. (shenson@redhat.com)
1577 - Refactor: depluralize madhatter branch (kelsey.hightower@gmail.com)
1578 - Updating setup.py and spec file. (kelsey.hightower@gmail.com)
1579 - New unit tests: Mgmtclasses (kelsey.hightower@gmail.com)
1580 - Updating cobbler/koan man pages with info on using the new configuration
1581   management capabilities (kelsey.hightower@gmail.com)
1582 - Cobbler web integration for new configuration management capabilities
1583   (kelsey.hightower@gmail.com)
1584 - Koan configuration management enhancements (kelsey.hightower@gmail.com)
1585 - Cobbler configuration management enhancements (kelsey.hightower@gmail.com)
1586 - New cobbler objects: mgmtclasses, packages, and files.
1587   (kelsey.hightower@gmail.com)
1588 - Merge remote branch 'jsabo/kickstart_done' (shenson@redhat.com)
1589 - Move kickstart_done and kickstart_start out of kickgen.py and into their own
1590   snippets. This also adds support for VMware ESX triggers and magic urls by
1591   checking for the "vmware" breed and then using curl when that's all thats
1592   available vs wget.  VMware's installer makes wget available during the %pre
1593   section but only curl is around following install at %post time.  Yay!  I've
1594   also updated the sample kickstarts to use $SNIPPET('kickstart_done') and
1595   $SNIPPET('kickstart_start') (jonathan.sabo@gmail.com)
1596 - No more getting confused between otype and obj_type (shenson@redhat.com)
1597 - The clean_link_cache method was calling subprocess_call without a logger
1598   (shenson@redhat.com)
1599 - Scott Henson pointed out that my earlier changes stopped a sync from also
1600   copying kernel/initrd files into the web directry.  Split out the targets
1601   from the copy, and make sure that sync still copies to webdir, and then also
1602   fixed where I wasn't copying those files in the synclite case.
1603   (dkilpatrick@verisign.com)
1604 - revert bad templates path (dkilpatrick@verisign.com)
1605 - Put back code that I removed incorrectly. (sync DHCP, DNS)
1606   (dkilpatrick@verisign.com)
1607 - Support installing FreeBSD without an IP address set in the host record.
1608   (dkilpatrick@verisign.com)
1609 - Fixed some bugs in the special-case handling code, where I was not properly
1610   handling kernel requests, because I'd merged some code that looked alike, but
1611   couldn't actually be merged. (dkilpatrick@verisign.com)
1612 - Two more fixes to bugs introduced by pytftpd patch set: * The generated
1613   configs did not have initrd set propertly * Some extra debugging log lines
1614   made it into remote.py (dkilpatrick@verisign.com)
1615 - Fix Trac#530 by properly handling a logger being none. Additionally, make
1616   subprocess_call and subprocess_get use common bits to reduce duplication.
1617   (shenson@redhat.com)
1618 - Fix a cobbler_web authentication leak issue.  There are times when the token
1619   that cobbelr_web had did not match the user logged in.  This patch ensures
1620   that the token always matches the user that is logged in.
1621   (shenson@redhat.com)
1622 - No more getting confused between otype and obj_type (shenson@redhat.com)
1623 - The clean_link_cache method was calling subprocess_call without a logger
1624   (shenson@redhat.com)
1625 - Merge remote branch 'kilpatds/master' (shenson@redhat.com)
1626 - Scott Henson pointed out that my earlier changes stopped a sync from also
1627   copying kernel/initrd files into the web directry.  Split out the targets
1628   from the copy, and make sure that sync still copies to webdir, and then also
1629   fixed where I wasn't copying those files in the synclite case.
1630   (dkilpatrick@verisign.com)
1631 - revert bad templates path (dkilpatrick@verisign.com)
1632 - Put back code that I removed incorrectly. (sync DHCP, DNS)
1633   (dkilpatrick@verisign.com)
1634 - Support installing FreeBSD without an IP address set in the host record.
1635   (dkilpatrick@verisign.com)
1636 - Fixed some bugs in the special-case handling code, where I was not properly
1637   handling kernel requests, because I'd merged some code that looked alike, but
1638   couldn't actually be merged. (dkilpatrick@verisign.com)
1639 - Two more fixes to bugs introduced by pytftpd patch set: * The generated
1640   configs did not have initrd set propertly * Some extra debugging log lines
1641   made it into remote.py (dkilpatrick@verisign.com)
1642 - fast sync.  A new way of copying files around using a link cache.  It creates
1643   a link cache per device and uses it as an intermediary so that files that are
1644   the same are not copied multiple times.  Should greatly speed up sync times.
1645   (shenson@redhat.com)
1646 - A few small fixes and a new feature for the Python tftp server * Support
1647   environments where the MAC address is know, but the IP address   is not
1648   (private networks).  I do this by waiting for pxelinux.0 to   request a file
1649   with the mac address added to the filename, and then   look up the host by
1650   MAC. * Fix my MAC lookup logic.  I didn't know to look for the ARP type (01-,
1651   at least for ethernet) added by pxelinux.0 * Fix up some log lines to make
1652   more sense * Fix a bug where I didn't get handle an empty fetchable_files
1653   properly, and didn't fall back to checking for profile matches.
1654   (dkilpatrick@verisign.com)
1655 - Two fixed to bad changes in my prior patch set.  Sorry about that. * Bad path
1656   in cobbler/action_sync.py.  No "templates" * Bad generation of the default
1657   boot menu.  The first initrd from a profile   was getting into the metadata
1658   cache and hanging around, thus becoming the   initrd for all labels.
1659   (dkilpatrick@verisign.com)
1660 - A smart tftp server, and a module to manage it
1661   (dkilpatr@dkilpatr.verisign.com)
1662 - Export the generated pxelinux.cfg file via the materialized system
1663   information RPC method.  This enables the python tftpd server below to serve
1664   that file up without any sync being required.
1665   (dkilpatr@dkilpatr.verisign.com)
1666 - Move management of /tftpboot into modules.  This is a setup step for a later
1667   python tftpd server that will eliminate the need for much of this work.
1668   (dkilpatr@dkilpatr.verisign.com)
1669 - Fetchable Files attribute:   Provides a new attribute similar in spirit to
1670   mgmt_files, but   with somewhat reversed meaning.
1671   (dkilpatr@dkilpatr.verisign.com)
1672 - fix log rotation to actually work (bpeck@redhat.com)
1673 - find_kernel and find_initrd already do the right checks for file_is_remote
1674   and return None if things are wrong. (bpeck@redhat.com)
1675 - Trac #588 Add mercurial support for scm tracking (kelsey.hightower@gmail.com)
1676 - Add a breed for scientific linux (shenson@redhat.com)
1677 - "mgmt_parameters" for item_profile has the wrong default setting when
1678   creating a sub_profile. I'm assuming that <<inherit>> would be correct for a
1679   sub_profile as well. (bpeck@redhat.com)
1680 - The new setup.py placed webui_content in the wrong spot...
1681   (akesling@redhat.com)
1682 - Merge commit 'a81ca9a4c18f17f5f8d645abf03c0e525cd234e1' (jeckersb@redhat.com)
1683 - Added back in old-style version tracking... because api.py needs it.
1684   (akesling@redhat.com)
1685 - Wrap the cobbler-web description (shenson@redhat.com)
1686 - Create the tftpboot directory during install (shenson@redhat.com)
1687 - Add in /var/lib/cobbler/loaders (shenson@redhat.com)
1688 - Create the images directory so that selinux will be happy
1689   (shenson@redhat.com)
1690 - Dont install some things in the webroot and put the services script down
1691   (shenson@redhat.com)
1692 - Fix some issues with clean installs of cobbler post build cleanup
1693   (shenson@redhat.com)
1694 - rhel5 doesn't build egg-info by default. (bpeck@redhat.com)
1695 - Some systems don't reboot properly at the end of install. s390 being one of
1696   them. This post module will call power reboot if postreboot is in ks_meta for
1697   that system. (bpeck@redhat.com)
1698 - Changes to allow s390 to work. s390 has a hard limit on the number of chars
1699   it can recieve. (bpeck@redhat.com)
1700 - show netboot status via koan. This is really handy if you have a system which
1701   fails to pxe boot you can create a service in rc.local which checks the
1702   status of netboot and calls --replace-self for example. (bpeck@redhat.com)
1703 - When adding in distros/profiles from disk don't bomb out if missing kernel or
1704   ramdisk. just don't add it. (bpeck@redhat.com)
1705 - add X log to anamon tracking as well. (bpeck@redhat.com)
1706 - Added new remote method clear_logs. Clearing console and anamon logs in %pre
1707   is too late if the install never happens. (bpeck@redhat.com)
1708 - fixes /var/www/cobbler/svc/services.py to canonicalize the uri before parsing
1709   it. This fixes a regression with mod_wsgi enabled and trying to provision a
1710   rhel3 machine. (bpeck@redhat.com)
1711 - anaconda umounts /proc on us while were still running. Deal with it.
1712   (bpeck@redhat.com)
1713 - fix escape (bpeck@redhat.com)
1714 - dont lowercase power type (bpeck@redhat.com)
1715 - Bump to 2.1.0 (shenson@redhat.com)
1716 - Properly detect unknown distributions (shenson@redhat.com)
1717 - cobblerd service: Required-Start: network -> $network
1718   (cristian.ciupitu@yahoo.com)
1719 - cobblerd service: add Default-Stop to LSB header (cristian.ciupitu@yahoo.com)
1720 - No more . on the end (shenson@redhat.com)
1721 - Do not delete settings and modules.conf (shenson@redhat.com)
1722 - Remove manpage generation from the make file (shenson@redhat.com)
1723 - Update the author and author email (shenson@redhat.com)
1724 - Proper ownership on some files (shenson@redhat.com)
1725 - More rpm cleanups (shenson@redhat.com)
1726 - Don't have the #! because rpm complains (shenson@redhat.com)
1727 - No more selinux here, we should not be calling chcon, things will end up with
1728   the proper context in a well configured selinux environment
1729   (shenson@redhat.com)
1730 - No more chowning the log file. (shenson@redhat.com)
1731 - A new spec file to go with the new setup.py (shenson@redhat.com)
1732 - Forgot to add aux to MANIFEST.in (akesling@redhat.com)
1733 - Fixed naming scheme for web UI to make it more uniform, what was Puppet
1734   Parameters is now Management Parameters. (akesling@redhat.com)
1735 - Removed unnecessary cruft. (akesling@redhat.com)
1736 - Reconfigured setup.py to now place config files and web ui content in the
1737   right places.  The paths are configurable like they were in the previous
1738   setup.py, but everything is much cleaner. (akesling@redhat.com)
1739 - Removed unnecessary templating functionality from configuration generation
1740   (and setup.py) (akesling@redhat.com)
1741 - Added more useful files to setup.py and MANIFEST.in as well as extra
1742   functionality which setup.py should contain. (akesling@redhat.com)
1743 - Massive overhaul of setup.py .  Moved things around a little to clean up
1744   building/packaging/distributing.  The new setup.py is still incomplete.
1745   (akesling@redhat.com)
1746 - RPM specific changes to setup.cfg. (akesling@redhat.com)
1747 - Currently working through making setup.py functional for generating rpms
1748   dynamically.  setup.py is just cobbler-web at the moment... and it appears to
1749   work.  The next things to do are test the current RPM and add in
1750   functionality for reducing repetitive setup.py configuration lines.
1751   (akesling@redhat.com)
1752 - Changed list-view edit link from a javascript onclick event to an actual
1753   link... so that you can now just open it in a new tab. (akesling@redhat.com)
1754 - Added tip for random MAC Address functionality to System MAC Address field.
1755   (akesling@redhat.com)
1756 - Added "Puppet Parameters" attribute to Profile and System items. The new
1757   input field is a textarea which takes proper a YAML formatted dictionary.
1758   This data is used for the Puppet External Nodes api call (found in
1759   services.py). (akesling@croissant.usersys.redhat.com)
1760 - Resume apitesting assuming against local Cobbler server. (dgoodwin@rm-rf.ca)
1761 - Replace rogue tab with whitespace. (dgoodwin@rm-rf.ca)
1762 - Open all log files in append mode.  Tasks should not be special.  This
1763   simplifies the handling of logging for selinux. (shenson@redhat.com)
1764 - Add rendered dir to cobbler.spec. (dgoodwin@rm-rf.ca)
1765 - Re-add mod_python dep only for cobbler-web. (dgoodwin@rm-rf.ca)
1766 - initializing variable that is not always initialized but is always accessed
1767   (jsherril@redhat.com)
1768 - Merge remote branch 'pvreman/master' (shenson@redhat.com)
1769 - add logging of triggers (peter.vreman@acision.com)
1770 - add logging of triggers (peter.vreman@acision.com)
1771 - cobbler-ext-nodes needs also to use http_port (peter.vreman@acision.com)
1772 - Adding VMware ESX specific boot options (jonathan.sabo@gmail.com)
1773 - Merge stable into master (shenson@redhat.com)
1774 - Fix cobbler_web authentication in a way that doesn't break previously working
1775   stuff (shenson@redhat.com)
1776 - Allow qemu disk type to be specified. Contributed by Galia Lisovskaya
1777   (shenson@redhat.com)
1778 - Merge remote branch 'jsabo/esx' (shenson@redhat.com)
1779 - Fix a bug where we were not looking for the syslinux provided menu.c32 before
1780   going after the getloaders one (shenson@redhat.com)
1781 - Fix cobbler_web authentication in a way that doesn't break previously working
1782   stuff (shenson@redhat.com)
1783 - More preparation for the release (shenson@redhat.com)
1784 - Update spec file for release (shenson@redhat.com)
1785 - Update changelog for release (shenson@redhat.com)
1786 - Bugfix: fetch extra metadata from upstream repositories more safely
1787   (icomfort@stanford.edu)
1788 - Bugfix: allow the creation of subprofiles again (icomfort@stanford.edu)
1789 - Don't warn needlessly when repo rpm_list is empty (icomfort@stanford.edu)
1790 - Bugfix: run createrepo on partial yum mirrors (icomfort@stanford.edu)
1791 - Change default mode for new directories from 0777 to 0755
1792   (icomfort@stanford.edu)
1793 - Fix replication when prune is specified and no systems are specified. This
1794   prevents us from killing systems on a slave that keeps its own systems. To
1795   get the old behavior, just specify a systems list that won't match anything.
1796   (shenson@redhat.com)
1797 - Always authorize the CLI (shenson@redhat.com)
1798 - Bugfix: fetch extra metadata from upstream repositories more safely
1799   (icomfort@stanford.edu)
1800 - Bugfix: allow the creation of subprofiles again (icomfort@stanford.edu)
1801 - Don't warn needlessly when repo rpm_list is empty (icomfort@stanford.edu)
1802 - Bugfix: run createrepo on partial yum mirrors (icomfort@stanford.edu)
1803 - Change default mode for new directories from 0777 to 0755
1804   (icomfort@stanford.edu)
1805 - Fix replication when prune is specified and no systems are specified. This
1806   prevents us from killing systems on a slave that keeps its own systems. To
1807   get the old behavior, just specify a systems list that won't match anything.
1808   (shenson@redhat.com)
1809 - Always authorize the CLI (shenson@redhat.com)
1810 - Merge branch 'wsgi' (dgoodwin@rm-rf.ca)
1811 - Adding VMware ESX 4 update 1 support (jonathan.sabo@gmail.com)
1812 - remove references to apt support from the man page (jeckersb@redhat.com)
1813 - wsgi: Service cleanup. (dgoodwin@rm-rf.ca)
1814 - wsgi: Revert to old error handling. (dgoodwin@rm-rf.ca)
1815 - wsgi: Switch Cobbler packaging/config from mod_python to mod_wsgi. (dgoodwin
1816   @rm-rf.ca)
1817 - wsgi: Return 404 when hitting svc URLs for missing objects. (dgoodwin@rm-
1818   rf.ca)
1819 - Merge branch 'master' into wsgi (dgoodwin@rm-rf.ca)
1820 - wsgi: First cut of port to mod_wsgi. (dgoodwin@rm-rf.ca)
1821
1822 * Thu Jun 17 2010 Scott Henson <shenson@redhat.com> - 2.1.0-1
1823 - Bump upstream release
1824
1825 * Tue Apr 27 2010 Scott Henson <shenson@redhat.com> - 2.0.4-1
1826 - Bug fix release, see Changelog for details
1827
1828 * Thu Apr 15 2010 Devan Goodwin <dgoodwin@rm-rf.ca> 2.0.3.2-1
1829 - Tagging for new build tools.
1830
1831 * Mon Mar  1 2010 Scott Henson <shenson@redhat.com> - 2.0.3.1-3
1832 - Bump release because I forgot cobbler-web
1833
1834 * Mon Mar  1 2010 Scott Henson <shenson@redhat.com> - 2.0.3.1-2
1835 - Remove requires on mkinitrd as it is not used
1836
1837 * Mon Feb 15 2010 Scott Henson <shenson@redhat.com> - 2.0.3.1-1
1838 - Upstream Brown Paper Bag Release (see CHANGELOG)
1839
1840 * Thu Feb 11 2010 Scott Henson <shenson@redhat.com> - 2.0.3-1
1841 - Upstream changes (see CHANGELOG)
1842
1843 * Mon Nov 23 2009 John Eckersberg <jeckersb@redhat.com> - 2.0.2-1
1844 - Upstream changes (see CHANGELOG)
1845
1846 * Tue Sep 15 2009 Michael DeHaan <michael.dehaan AT gmail> - 2.0.0-1
1847 - First release with unified spec files