2007-06-08 21:06:29 +00:00
|
|
|
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
2005-10-13 20:16:44 +00:00
|
|
|
|
2005-10-05 19:14:13 +00:00
|
|
|
Summary: A python library for manipulating kickstart files
|
|
|
|
Name: pykickstart
|
2007-01-31 23:12:18 +00:00
|
|
|
Url: http://fedoraproject.org/wiki/pykickstart
|
2007-10-04 18:55:55 +00:00
|
|
|
Version: 1.17
|
2007-08-02 20:17:54 +00:00
|
|
|
Release: 1%{?dist}
|
2007-06-08 21:06:29 +00:00
|
|
|
# This is a Red Hat maintained package which is specific to
|
|
|
|
# our distribution. Thus the source is only available from
|
|
|
|
# within this srpm.
|
2005-10-05 19:14:13 +00:00
|
|
|
Source0: %{name}-%{version}.tar.gz
|
2007-06-08 21:06:29 +00:00
|
|
|
|
2007-08-09 19:03:27 +00:00
|
|
|
License: GPLv2
|
2005-10-05 19:14:13 +00:00
|
|
|
Group: System Environment/Libraries
|
|
|
|
BuildArch: noarch
|
2007-01-31 23:12:18 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildRequires: python-devel, gettext
|
2007-07-19 20:27:34 +00:00
|
|
|
Requires: python, python-urlgrabber, rhpl
|
2005-10-05 19:14:13 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
The pykickstart package is a python library for manipulating kickstart
|
|
|
|
files.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
make
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
%install
|
2007-01-31 23:12:18 +00:00
|
|
|
rm -rf %{buildroot}
|
|
|
|
make DESTDIR=%{buildroot} install
|
|
|
|
%find_lang %{name}
|
2005-10-05 19:14:13 +00:00
|
|
|
|
|
|
|
%clean
|
2007-01-31 23:12:18 +00:00
|
|
|
rm -rf %{buildroot}
|
2005-10-05 19:14:13 +00:00
|
|
|
|
2007-01-31 23:12:18 +00:00
|
|
|
%files -f %{name}.lang
|
|
|
|
%defattr(-,root,root,-)
|
2005-10-19 18:47:16 +00:00
|
|
|
%doc README ChangeLog COPYING docs/programmers-guide
|
2007-09-12 21:53:38 +00:00
|
|
|
%doc docs/kickstart-docs.txt
|
2005-10-13 20:16:44 +00:00
|
|
|
%{python_sitelib}/pykickstart
|
2007-01-31 23:12:18 +00:00
|
|
|
%{_bindir}/ksvalidator
|
2007-09-28 15:12:10 +00:00
|
|
|
%{_bindir}/ksflatten
|
2005-10-05 19:14:13 +00:00
|
|
|
|
|
|
|
%changelog
|
2007-10-04 18:55:55 +00:00
|
|
|
* Thu Oct 04 2007 Chris Lumens <clumens@redhat.com> 1.17-1
|
|
|
|
- Simplify argument processing and printing.
|
|
|
|
|
2007-10-03 20:21:01 +00:00
|
|
|
* Wed Oct 03 2007 Chris Lumens <clumens@redhat.com> 1.16-1
|
|
|
|
- Undeprecate %packages --excludedocs.
|
|
|
|
- Fix a traceback in the device command handling.
|
|
|
|
- Add bootloader --timeout (katzj).
|
|
|
|
|
2007-10-02 20:23:33 +00:00
|
|
|
* Tue Oct 02 2007 Chris Lumens <clumens@redhat.com> 1.15-1
|
|
|
|
- Update translations (#259121).
|
|
|
|
- The device command no longer takes a type argument.
|
|
|
|
|
2007-09-28 15:12:10 +00:00
|
|
|
* Fri Sep 28 2007 Chris Lumens <clumens@redhat.com> 1.14-1
|
|
|
|
- Fix output formatting for packages section header (#310211).
|
|
|
|
- Add a script to flatten kickstart files containing includes (katzj).
|
|
|
|
|
2007-09-12 21:53:38 +00:00
|
|
|
* Wed Sep 12 2007 Chris Lumens <clumens@redhat.com> 1.13-1
|
|
|
|
- Add a function to convert URL method strings into repo objects
|
|
|
|
(jkeating).
|
|
|
|
- Writer formatting fixes.
|
|
|
|
- Add kickstart documentation from the Fedora Wiki.
|
|
|
|
|
2007-09-04 16:23:25 +00:00
|
|
|
* Tue Sep 04 2007 Chris Lumens <clumens@redhat.com> 1.12-1
|
|
|
|
- Fix lots of problems in processing the bootloader, device, network, and
|
|
|
|
raid commands.
|
|
|
|
- Add %end when writing out scripts and packages.
|
|
|
|
- Add a makefile target to run pychecker to cut down on errors in
|
|
|
|
releases.
|
|
|
|
|
2007-09-03 23:57:34 +00:00
|
|
|
* Mon Sep 3 2007 Jeremy Katz <katzj@redhat.com> - 1.11-1
|
|
|
|
- fix a few tracebacks
|
|
|
|
|
2007-08-31 14:44:14 +00:00
|
|
|
* Fri Aug 31 2007 Chris Lumens <clumens@redhat.com> 1.10-1
|
|
|
|
- Add network --ipv6=.
|
|
|
|
|
2007-08-24 18:00:57 +00:00
|
|
|
* Fri Aug 24 2007 Chris Lumens <clumens@redhat.com> 1.9-1
|
|
|
|
- Add support for the %end directive to be placed at the end of scripts
|
|
|
|
and packages sections. Deprecate old syntax.
|
|
|
|
- Clean up after ksvalidator if pykickstart issues a traceback.
|
|
|
|
- Add support for repo --priority --includepkgs --excludepkgs.
|
|
|
|
- Fix newline at end of reboot --eject output (#253562).
|
|
|
|
|
2007-08-13 14:48:29 +00:00
|
|
|
* Mon Aug 13 2007 Chris Lumens <clumens@redhat.com> 1.8-1
|
|
|
|
- Fix type checking of string values.
|
|
|
|
|
2007-08-09 19:03:27 +00:00
|
|
|
* Thu Aug 09 2007 Chris Lumens <clumens@redhat.com> 1.7-1
|
|
|
|
- Clarify license in spec file and all source files.
|
|
|
|
- Check string values to options to make sure they're not other options
|
|
|
|
(#251318).
|
|
|
|
|
2007-08-02 20:17:54 +00:00
|
|
|
* Thu Aug 02 2007 Chris Lumens <clumens@redhat.com> 1.6-1
|
|
|
|
- Fix a couple tracebacks in ksvalidator.
|
|
|
|
- Change --class to --dhcpclass (#248912).
|
|
|
|
|
2007-07-19 20:27:34 +00:00
|
|
|
* Thu Jul 19 2007 Chris Lumens <clumens@redhat.com> 1.5-2
|
|
|
|
- Require rhpl (#248953).
|
|
|
|
|
2007-07-17 21:20:12 +00:00
|
|
|
* Tue Jul 17 2007 Chris Lumens <clumens@redhat.com> 1.5-1
|
|
|
|
- Fix traceback when calling preprocessKickstart.
|
|
|
|
|
2007-07-17 15:08:18 +00:00
|
|
|
* Tue Jul 17 2007 Chris Lumens <clumens@redhat.com> 1.4-1
|
|
|
|
- Add methods to handle the %ksappend directive.
|
|
|
|
- Fix ignoredisk --disks.
|
|
|
|
|
2007-07-16 15:46:05 +00:00
|
|
|
* Wed Jul 11 2007 Chris Lumens <clumens@redhat.com> - 1.3-1
|
|
|
|
- Add support for ignoredisk --only-use.
|
|
|
|
- Fix traceback in raid command printing method (#246709).
|
|
|
|
|
2007-06-08 21:06:29 +00:00
|
|
|
* Fri Jun 08 2007 Chris Lumens <clumens@redhat.com> - 1.2-2
|
|
|
|
- Fix package review problems (#226334).
|
|
|
|
|
2007-06-04 18:36:57 +00:00
|
|
|
* Mon Jun 04 2007 Chris Lumens <clumens@redhat.com> - 1.2-1
|
|
|
|
- Fix harddrive install method error checking (#232492).
|
|
|
|
- Set authentication information from the input line to preserve quoting
|
|
|
|
(#241657).
|
|
|
|
- Allow included files to be given by URL.
|
|
|
|
- Fix typo in user --iscrypted option.
|
|
|
|
|
2007-05-14 14:05:43 +00:00
|
|
|
* Mon May 14 2007 Chris Lumens <clumens@redhat.com> - 1.1-1
|
|
|
|
- Better regexes for splitting version strings into family and version.
|
|
|
|
- Add basic support for RHEL3.
|
|
|
|
- Update translations.
|
|
|
|
|
2007-04-13 16:13:26 +00:00
|
|
|
* Fri Apr 13 2007 Chris Lumens <clumens@redhat.com> - 1.0-1
|
|
|
|
- Update documentation.
|
|
|
|
- Update translations.
|
|
|
|
|
2007-03-19 21:25:33 +00:00
|
|
|
* Mon Mar 19 2007 Chris Lumens <clumens@redhat.com> - 0.100-1
|
|
|
|
- bootloader should be written out after upgrade/install.
|
|
|
|
- Treat class names as unicode strings (#231053).
|
|
|
|
|
2007-03-07 20:15:48 +00:00
|
|
|
* Wed Mar 07 2007 Chris Lumens <clumens@redhat.com> - 0.99-1
|
|
|
|
- The timezone command didn't recognize --isUtc before FC6 (#231189).
|
|
|
|
- Recognize %ksappend lines in ksvalidator.
|
|
|
|
- Don't set default values in some command __init__ methods.
|
|
|
|
- Added an updates command.
|
|
|
|
- Add support for RAID10.
|
|
|
|
|
2007-02-26 22:18:23 +00:00
|
|
|
* Mon Feb 26 2007 Chris Lumens <clumens@redhat.com> - 0.98-1
|
|
|
|
- Fix device command syntax to match anaconda.
|
|
|
|
- Fix __call__ on method command.
|
|
|
|
|
2007-02-21 22:12:40 +00:00
|
|
|
* Wed Feb 21 2007 Chris Lumens <clumens@redhat.com> - 0.97-1
|
|
|
|
- Fix traceback when not overriding default mappings (#229505).
|
|
|
|
|
2007-02-20 21:20:02 +00:00
|
|
|
* Tue Feb 20 2007 Chris Lumens <clumens@redhat.com> - 0.96-1
|
|
|
|
- Fix __str__ methods for langsupport and reboot commands.
|
|
|
|
- Renamed BaseHandler.empty to BaseHandler.maskAllExcept.
|
|
|
|
- Split command objects out into their own files in commands/.
|
|
|
|
- Rename command objects to start with Version_.
|
|
|
|
- Support extended group selection syntax.
|
|
|
|
|
2007-02-14 22:39:27 +00:00
|
|
|
* Wed Feb 14 2007 Chris Lumens <clumens@redhat.com> - 0.95-1
|
|
|
|
- KickstartParser no longer takes a version argument.
|
|
|
|
- Be more lenient in what strings stringToVersion accepts.
|
|
|
|
- Allow setting state on one data object from multiple files.
|
|
|
|
|
2007-02-07 17:44:52 +00:00
|
|
|
* Wed Feb 07 2007 Chris Lumens <clumens@redhat.com> - 0.94-1
|
|
|
|
- Add a newline to the end of the key command output.
|
|
|
|
- Use network bootproto constants (#197694).
|
|
|
|
- Fix tracebacks in subclass __str__ methods (#226734).
|
|
|
|
|
2007-01-31 23:12:18 +00:00
|
|
|
* Wed Jan 31 2007 Chris Lumens <clumens@redhat.com> - 0.93-2
|
|
|
|
- Make some minor spec file changes to get closer to the extras guidelines.
|
|
|
|
|
2007-01-25 21:55:55 +00:00
|
|
|
* Thu Jan 25 2007 Chris Lumens <clumens@redhat.com> - 0.93-1
|
|
|
|
- Add support for FC3, RHEL4, and RHEL5.
|
|
|
|
- The key command was not supported until after FC6.
|
|
|
|
- Accept more strings in stringToVersion.
|
|
|
|
|
2007-01-19 21:30:26 +00:00
|
|
|
* Fri Jan 19 2007 Chris Lumens <clumens@redhat.com> - 0.92-1
|
|
|
|
- Fix KickstartVersionError reporting.
|
|
|
|
- Add a version attribute to handler objects.
|
|
|
|
- Fix line number reporting on lots of commands.
|
|
|
|
- Add initial support for Fedora 7 and remove deprecated commands.
|
2007-01-31 23:12:18 +00:00
|
|
|
- Accept a --default argument to the %%packages header (#221305).
|
2007-01-19 21:30:26 +00:00
|
|
|
|
2007-01-17 21:53:11 +00:00
|
|
|
* Wed Jan 17 2007 Chris Lumens <clumens@redhat.com> - 0.91-1
|
|
|
|
- Add a method to read kickstart files from strings.
|
|
|
|
|
2007-01-16 19:29:52 +00:00
|
|
|
* Tue Jan 16 2007 Chris Lumens <clumens@redhat.com> - 0.90-1
|
|
|
|
- Support multiple versions of kickstart syntax from one code base
|
|
|
|
(#189348).
|
|
|
|
- Fix inconsistency between Script parser and writer (#222877).
|
|
|
|
|
2006-12-15 15:30:03 +00:00
|
|
|
* Fri Dec 15 2006 Chris Lumens <clumens@redhat.com> - 0.43-1
|
|
|
|
- Pull in new translations (#216620).
|
|
|
|
|
2006-12-07 16:05:46 +00:00
|
|
|
* Thu Dec 7 2006 Jeremy Katz <katzj@redhat.com> - 0.42-2
|
|
|
|
- rebuild against python 2.5
|
|
|
|
|
2006-12-05 16:49:33 +00:00
|
|
|
* Tue Dec 05 2006 Chris Lumens <clumens@redhat.com> - 0.42-1
|
|
|
|
- Fix traceback when writing out repo command (#218274).
|
|
|
|
|
2006-12-01 17:28:10 +00:00
|
|
|
* Fri Dec 01 2006 Chris Lumens <clumens@redhat.com> - 0.41-1
|
|
|
|
- Fix traceback when using deprecated commands (#218047, #218059).
|
|
|
|
|
2006-11-30 19:16:06 +00:00
|
|
|
* Thu Nov 30 2006 Chris Lumens <clumens@redhat.com> - 0.40-1
|
|
|
|
- Pull in new translations (#216620).
|
|
|
|
- Add --level argument to logging command writer.
|
|
|
|
|
2006-10-24 17:18:13 +00:00
|
|
|
* Tue Oct 24 2006 Chris Lumens <clumens@redhat.com> - 0.39-2
|
|
|
|
- Fix release number.
|
|
|
|
|
2006-10-24 16:44:44 +00:00
|
|
|
* Tue Oct 24 2006 Chris Lumens <clumens@redhat.com> - 0.39-1
|
|
|
|
- Add writer for --key (#211997).
|
|
|
|
|
|
|
|
* Tue Oct 17 2006 Jeremy Katz <katzj@redhat.com> - 0.38-1
|
|
|
|
- allow --skip for installation number as well (#207029)
|
|
|
|
|
|
|
|
* Mon Oct 16 2006 Jeremy Katz <katzj@redhat.com> - 0.37-1
|
|
|
|
- support for installation numbers (#207029)
|
|
|
|
|
2006-10-13 21:45:08 +00:00
|
|
|
* Fri Oct 13 2006 Bill Nottingham <notting@redhat.com> - 0.36-1
|
|
|
|
- use valid charsets in translations (#210720)
|
|
|
|
|
2006-09-29 21:02:30 +00:00
|
|
|
* Fri Sep 29 2006 Chris Lumens <clumens@redhat.com> - 0.35-1
|
|
|
|
- Fix traceback in harddrive command (#208557).
|
|
|
|
|
2006-09-25 15:03:33 +00:00
|
|
|
* Mon Sep 25 2006 Chris Lumens <clumens@redhat.com> - 0.34-1
|
|
|
|
- Add support for --biospart option to harddrive (#207585).
|
|
|
|
- Update writer for syntax changes.
|
|
|
|
|
2006-09-20 22:15:03 +00:00
|
|
|
* Wed Sep 20 2006 Jeremy Katz <katzj@redhat.com> - 0.33-1
|
|
|
|
- improved iscsi syntax
|
|
|
|
- allow multiple zfcp devs
|
|
|
|
|
2006-07-20 18:52:06 +00:00
|
|
|
* Thu Jul 20 2006 Chris Lumens <clumens@redhat.com> 0.32-1
|
|
|
|
- Limit --bootproto to what anaconda supports.
|
|
|
|
- Add --noipv4 and --noipv6 network options.
|
|
|
|
|
2006-06-20 20:47:00 +00:00
|
|
|
* Tue Jun 20 2006 Chris Lumens <clumens@redhat.com> 0.31-1
|
|
|
|
- Handle nfs --opts (katzj).
|
|
|
|
- RAID devices should be integers instead of strings (#176537).
|
|
|
|
- Add initial support for iscsi (katzj).
|
|
|
|
|
2006-06-06 13:58:23 +00:00
|
|
|
* Tue Jun 06 2006 Chris Lumens <clumens@redhat.com> 0.30-2
|
|
|
|
- Add BuildRequires to fix building under mock (#194156, Joost Soeterbroek
|
|
|
|
<fedora AT soeterbroek.com>).
|
|
|
|
|
2006-05-25 20:12:34 +00:00
|
|
|
* Thu May 25 2006 Chris Lumens <clumens@redhat.com> 0.30-1
|
|
|
|
- Change order of LVM-related writing functions (#193073).
|
|
|
|
- Require urlgrabber.
|
|
|
|
- Return a more useful error message on unknown commands.
|
|
|
|
- Fix logvol writing typo.
|
|
|
|
- Make ksvalidator validate from a URL in addition to a file.
|
|
|
|
- Don't write out an empty packages section (#192851).
|
|
|
|
|
2006-05-23 15:53:12 +00:00
|
|
|
* Tue May 23 2006 Chris Lumens <clumens@redhat.com> 0.29-1
|
|
|
|
- Add multipath command, handlers, and data objects (pjones).
|
|
|
|
- Rename --ports to --port in writer.
|
|
|
|
|
2006-05-15 21:28:14 +00:00
|
|
|
* Mon May 15 2006 Chris Lumens <clumens@redhat.com> 0.28-1
|
|
|
|
- Support --mtu for the network command (#191328).
|
|
|
|
- Accept --isUtc for backwards compatibility.
|
|
|
|
|
2006-05-04 20:47:54 +00:00
|
|
|
* Wed May 04 2006 Chris Lumens <clumens@redhat.com> 0.27-1
|
|
|
|
- Output formatting fixes.
|
|
|
|
- Added commands for managing users and services.
|
|
|
|
|
2006-04-17 19:20:17 +00:00
|
|
|
* Mon Apr 17 2006 Chris Lumens <clumens@redhat.com> 0.26-1
|
|
|
|
- Ignore spaces before group names (#188095).
|
|
|
|
- Added some translations.
|
|
|
|
- Add options for repo command.
|
2007-01-31 23:12:18 +00:00
|
|
|
- Reorder %%packages section output.
|
|
|
|
- Output %%packages header options.
|
2006-04-17 19:20:17 +00:00
|
|
|
- Initialize RAID and volume group members to empty lists.
|
|
|
|
|
2006-03-27 21:01:41 +00:00
|
|
|
* Mon Mar 27 2006 Chris Lumens <clumens@redhat.com> 0.25-1
|
|
|
|
- Add support for the logging command.
|
|
|
|
|
2006-03-27 17:16:06 +00:00
|
|
|
* Mon Mar 27 2006 Chris Lumens <clumens@redhat.com> 0.24-1
|
|
|
|
- Don't write out a blank xconfig line.
|
|
|
|
- Reorder output handlers to group like commands together.
|
|
|
|
- Mark strings for translation.
|
|
|
|
|
2006-03-07 22:10:15 +00:00
|
|
|
* Tue Mar 07 2006 Chris Lumens <clumens@redhat.com> 0.23-1
|
|
|
|
- Backwards compatibility support for options to zerombr.
|
|
|
|
|
2006-02-24 19:54:38 +00:00
|
|
|
* Fri Feb 24 2006 Chris Lumens <clumens@redhat.com> 0.22-1
|
|
|
|
- Get ignoredisk working again (#182934).
|
|
|
|
|
2006-02-17 20:48:02 +00:00
|
|
|
* Fri Feb 17 2006 Chris Lumens <clumens@redhat.com> 0.21-1
|
|
|
|
- Provide an option to not traceback on missing include files (#181760).
|
|
|
|
- Update programming documentation.
|
|
|
|
|
2006-02-13 21:17:17 +00:00
|
|
|
* Mon Feb 13 2006 Chris Lumens <clumens@redhat.com> 0.20-1
|
|
|
|
- Correctly set --noformat and --useexisting on lvm and raid.
|
|
|
|
|
2006-02-13 16:25:41 +00:00
|
|
|
* Mon Feb 13 2006 Chris Lumens <clumens@redhat.com> 0.19-1
|
|
|
|
- --onboot requires a value (#180987).
|
|
|
|
- Be more strict about commands that don't take arguments.
|
|
|
|
|
2006-02-09 20:57:34 +00:00
|
|
|
* Thu Feb 09 2006 Chris Lumens <clumens@redhat.com> 0.18-1
|
|
|
|
- Fix some errors pychecker caught.
|
|
|
|
- Allow exceptions to not be fatal so ksvalidator can spot more errors in
|
|
|
|
a single pass (#179894).
|
|
|
|
|
2006-02-01 22:03:30 +00:00
|
|
|
* Wed Feb 01 2006 Chris Lumens <clumens@redhat.com> 0.17-1
|
|
|
|
- Don't set a default port for vnc.
|
|
|
|
|
2006-01-31 21:44:01 +00:00
|
|
|
* Tue Jan 31 2006 Chris Lumens <clumens@redhat.com> 0.16-1
|
|
|
|
- Give dmraid string an initial value.
|
|
|
|
- Handle None on partition size.
|
|
|
|
|
2006-01-31 16:43:05 +00:00
|
|
|
* Tue Jan 31 2006 Peter Jones <pjones@redhat.com> 0.15-1
|
|
|
|
- Add dmraid support
|
|
|
|
|
2006-01-30 20:36:51 +00:00
|
|
|
* Mon Jan 30 2006 Chris Lumens <clumens@redhat.com> 0.14-1
|
|
|
|
- Fix VNC parameter parsing (#179209).
|
|
|
|
- Deprecate --connect. Add --host and --port instead.
|
|
|
|
|
2006-01-19 21:45:57 +00:00
|
|
|
* Thu Jan 19 2006 Chris Lumens <clumens@redhat.com> 0.13-1
|
|
|
|
- Recognize the --eject parameter to shutdown/halt.
|
|
|
|
- Store the exact post-installation action in ksdata.
|
|
|
|
|
2006-01-09 20:48:33 +00:00
|
|
|
* Mon Jan 09 2006 Chris Lumens <clumens@redhat.com> 0.12-1
|
|
|
|
- Clean up output quoting.
|
|
|
|
- Finish removing monitor-related stuff from xconfig.
|
|
|
|
|
2005-12-12 21:19:55 +00:00
|
|
|
* Mon Dec 12 2005 Chris Lumens <clumens@redhat.com> 0.11-1
|
|
|
|
- Deprecate monitor-related options to xconfig.
|
|
|
|
|
2005-12-08 21:26:37 +00:00
|
|
|
* Thu Dec 08 2005 Chris Lumens <clumens@redhat.com> 0.10-1
|
|
|
|
- Support --bytes-per-inode on raid
|
|
|
|
(Curtis Doty <Curtis at GreenKey.net> #175288).
|
|
|
|
|
2005-11-17 01:03:44 +00:00
|
|
|
* Wed Nov 16 2005 Jeremy Katz <katzj@redhat.com> - 0.9-1
|
|
|
|
- fixup network --onboot
|
|
|
|
|
2005-11-03 21:42:41 +00:00
|
|
|
* Thu Nov 03 2005 Chris Lumens <clumens@redhat.com> 0.8-1
|
|
|
|
- Default to SELINUX_ENFORCING.
|
|
|
|
- Default partition sizes to None for anaconda (#172378).
|
|
|
|
- Don't call shlex.split on anything inside a script (#172313).
|
|
|
|
|
2005-11-02 03:31:55 +00:00
|
|
|
* Tue Nov 01 2005 Chris Lumens <clumens@redhat.com> 0.7-1
|
|
|
|
- Fix clearpart --all.
|
|
|
|
- vnc command does not require --connect option (#172192).
|
|
|
|
- network --onboot does not take any option.
|
|
|
|
- Remove extra spaces from firewall --ports and --trust.
|
|
|
|
- Write out network --<service> options.
|
|
|
|
|
2005-10-28 17:33:22 +00:00
|
|
|
* Fri Oct 28 2005 Chris Lumens <clumens@redhat.com> 0.6-1
|
|
|
|
- Add --resolvedeps and --ignoredeps as deprecated options.
|
|
|
|
- Pass line number to header functions.
|
|
|
|
|
2005-10-24 21:13:43 +00:00
|
|
|
* Mon Oct 24 2005 Chris Lumens <clumens@redhat.com> 0.5-1
|
|
|
|
- Add line numbers to exception reporting.
|
|
|
|
- Added ksvalidator.
|
|
|
|
|
2005-10-19 18:47:16 +00:00
|
|
|
* Wed Oct 19 2005 Chris Lumens <clumens@redhat.com> 0.4-1
|
|
|
|
- Correct deprecated attribute on options.
|
|
|
|
- Added programming documentation.
|
|
|
|
|
2005-10-13 20:16:44 +00:00
|
|
|
* Thu Oct 13 2005 Chris Lumens <clumens@redhat.com> 0.3-2
|
|
|
|
- Correct python lib directory on 64-bit archs (#170621).
|
|
|
|
|
2005-10-07 20:10:25 +00:00
|
|
|
* Fri Oct 07 2005 Chris Lumens <clumens@redhat.com> 0.3-1
|
|
|
|
- Add a deprecated attribute to options.
|
|
|
|
- Add --card option back to xconfig and mark as deprecated.
|
|
|
|
- Throw a deprecation warning on mouse and langsupport commands.
|
|
|
|
- Rename Writer to KickstartWriter for consistency.
|
|
|
|
- Collapse scripts into a single list and add an attribute on Script to
|
|
|
|
differentiate.
|
|
|
|
|
2005-10-05 21:53:51 +00:00
|
|
|
* Wed Oct 05 2005 Chris Lumens <clumens@redhat.com> 0.2-1
|
|
|
|
- Rename module to pykickstart to avoid conflicts in anaconda.
|
|
|
|
- Rename data classes for consistency.
|
|
|
|
- Add default bytesPerInode settings.
|
|
|
|
|
2005-10-05 19:14:13 +00:00
|
|
|
* Wed Oct 05 2005 Chris Lumens <clumens@redhat.com> 0.1-1
|
|
|
|
- Created package from anaconda.
|