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