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