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