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