Blame SPECS/chkconfig.spec

aa975d
Summary: A system tool for maintaining the /etc/rc*.d hierarchy
aa975d
Name: chkconfig
aa975d
Version: 1.7.4
aa975d
Release: 1%{?dist}
aa975d
License: GPLv2
aa975d
Group: System Environment/Base
aa975d
URL: https://github.com/fedora-sysv/chkconfig
aa975d
Source: https://github.com/fedora-sysv/chkconfig/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
aa975d
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
aa975d
BuildRequires: newt-devel gettext popt-devel libselinux-devel
aa975d
Conflicts: initscripts <= 5.30-1
aa975d
aa975d
%description
aa975d
Chkconfig is a basic system utility.  It updates and queries runlevel
aa975d
information for system services.  Chkconfig manipulates the numerous
aa975d
symbolic links in /etc/rc.d, to relieve system administrators of some 
aa975d
of the drudgery of manually editing the symbolic links.
aa975d
aa975d
%package -n ntsysv
aa975d
Summary: A tool to set the stop/start of system services in a runlevel
aa975d
Group: System Environment/Base
aa975d
Requires: chkconfig = %{version}-%{release}
aa975d
aa975d
%description -n ntsysv
aa975d
Ntsysv provides a simple interface for setting which system services
aa975d
are started or stopped in various runlevels (instead of directly
aa975d
manipulating the numerous symbolic links in /etc/rc.d). Unless you
aa975d
specify a runlevel or runlevels on the command line (see the man
aa975d
page), ntsysv configures the current runlevel (5 if you're using X).
aa975d
aa975d
%prep
aa975d
%setup -q
aa975d
aa975d
%build
aa975d
make RPM_OPT_FLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_LD_FLAGS" %{?_smp_mflags}
aa975d
aa975d
%check
aa975d
make check
aa975d
aa975d
%install
aa975d
rm -rf $RPM_BUILD_ROOT
aa975d
make DESTDIR=$RPM_BUILD_ROOT MANDIR=%{_mandir} SBINDIR=%{_sbindir} install
aa975d
aa975d
mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d
aa975d
ln -s rc.d/init.d $RPM_BUILD_ROOT/etc/init.d
aa975d
for n in 0 1 2 3 4 5 6; do
aa975d
    mkdir -p $RPM_BUILD_ROOT/etc/rc.d/rc${n}.d
aa975d
    ln -s rc.d/rc${n}.d $RPM_BUILD_ROOT/etc/rc${n}.d
aa975d
done
aa975d
mkdir -p $RPM_BUILD_ROOT/etc/chkconfig.d
aa975d
aa975d
%find_lang %{name}
aa975d
aa975d
%clean
aa975d
rm -rf $RPM_BUILD_ROOT
aa975d
aa975d
%files -f %{name}.lang
aa975d
%defattr(-,root,root)
aa975d
%{!?_licensedir:%global license %%doc}
aa975d
%license COPYING
aa975d
%dir /etc/alternatives
aa975d
/sbin/chkconfig
aa975d
%{_sbindir}/update-alternatives
aa975d
%{_sbindir}/alternatives
aa975d
/etc/chkconfig.d
aa975d
/etc/init.d
aa975d
/etc/rc.d
aa975d
/etc/rc.d/init.d
aa975d
/etc/rc[0-6].d
aa975d
/etc/rc.d/rc[0-6].d
aa975d
%dir /var/lib/alternatives
aa975d
%{_mandir}/*/chkconfig*
aa975d
%{_mandir}/*/update-alternatives*
aa975d
%{_mandir}/*/alternatives*
aa975d
%{_prefix}/lib/systemd/systemd-sysv-install
aa975d
aa975d
%files -n ntsysv
aa975d
%defattr(-,root,root)
aa975d
%{_sbindir}/ntsysv
aa975d
%{_mandir}/*/ntsysv.8*
aa975d
aa975d
%triggerin -- chkconfig < 1.7
aa975d
for i in  /var/lib/alternatives/* ; do
aa975d
    sed -i -e 's/^@.*@\([0-9]*\)$/\1/' $i
aa975d
done
aa975d
aa975d
%changelog
aa975d
* Tue Jun 06 2017 Lukáš Nykrýn <lnykryn@redhat.com> - 1.7.4-1
aa975d
- po: update translations
aa975d
aa975d
* Thu Mar 16 2017 Lukáš Nykrýn <lnykryn@redhat.com> - 1.7.3-1
aa975d
- spec: make possible to downgrade to pre-family versions
aa975d
- po: update translations
aa975d
aa975d
* Wed Jun 29 2016 Lukáš Nykrýn <lnykryn@redhat.com> - 1.7.2-1
aa975d
- alternatives: introduce --keep-missing
aa975d
- alternatives: allow family in --set and display it in --config
aa975d
aa975d
* Fri Jun 17 2016 Lukáš Nykrýn <lnykryn@redhat.com> - 1.7.1-1
aa975d
- merge the upstream with rhel branch
aa975d
- remove the preset change
aa975d
aa975d
* Tue Nov 24 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 1.7-1
aa975d
- leveldb: fix segfault when selinux policy is not present
aa975d
- alternatives: add family option
aa975d
aa975d
* Fri Oct 02 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 1.6-1
aa975d
- systemd-sysv-install: don't play ping-pong with systemctl
aa975d
- ntsysv: add description to systemd services
aa975d
- ntsysv: skip templates
aa975d
- Makefile: fix typo
aa975d
aa975d
* Mon Jun 01 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 1.5-1
aa975d
- add systemd-sysv-install alias
aa975d
- don't create symlinks if they already exist
aa975d
- fix wrongly behaving LDFLAGS
aa975d
aa975d
* Thu Mar 26 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 1.4-1
aa975d
- ntsysv: show systemd services and sockets
aa975d
- fix combination --type xinetd --list service
aa975d
- leveldb: restore selinux context for xinetd conf files
aa975d
- alternatives: remove unused variable
aa975d
- alternatives: warn if the target is not a symlink
aa975d
- spec: add link to git
aa975d
- lets simplify version
aa975d
aa975d
* Wed Nov 05 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 1.3.63-1
aa975d
- alternatives: during install don't call preset on enabled services
aa975d
aa975d
* Tue Aug 12 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 1.3.62-1
aa975d
- use systemctl preset, not systemctl enable
aa975d
- fix typo in manpage
aa975d
- partly support socket activated services
aa975d
aa975d
* Wed Jul 31 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 1.3.61-1
aa975d
- try to make install_initd work
aa975d
- fix permission issues with xinetd services
aa975d
aa975d
* Tue Mar 12 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 1.3.60-1
aa975d
- don't completely override LDFLAGS
aa975d
- pass along any rpm-configured LD flags
aa975d
- make sure install_initd/remove_initd provides appropriate help output for those commands (#803818)
aa975d
- check for overridden services in /etc too (#850899)
aa975d
- chconfig should own /etc/rc.d (#894328)
aa975d
- isXinetdEnabled should also ask systemd (#820363)
aa975d
- alternatives: look for service file also in /etc
aa975d
- alternatives: add --list option (#622635)
aa975d
- chkconfig: add hint to call systemctl list-unit-files and list-dependencies (#800334)
aa975d
- chkconfig: correctly handle unreadable init.d (#913807)
aa975d
- alternatives: call systemctl enable with --force (#915667)
aa975d
aa975d
* Wed Mar  7 2012 Bill Nottingham <notting@redhat.com> 1.3.59-1
aa975d
- translation updates
aa975d
- xinetd may be a systemd service. Make sure we can still reload it (#800490)
aa975d
aa975d
* Fri Feb 10 2012 Bill Nottingham <notting@redhat.com> 1.3.58-1
aa975d
- fix forwarding to systemctl with systemd >= 41 (#789256)
aa975d
- assorted regression fixes from 1.3.57 (#782152, etc.)
aa975d
aa975d
* Wed Jan 04 2012 Bill Nottingham <notting@redhat.com> 1.3.57-1
aa975d
- assorted cleanups to LSB dependency support (#693202 fixed properly, #701573)
aa975d
- fix kill values for LSB-only scripts (#696305, <jbastian@redhat.com>)
aa975d
- don't apply start deps for services that aren't starting anywhere (#750446)
aa975d
aa975d
* Tue Oct 11 2011 Bill Nottingham <notting@redhat.com> 1.3.56-1
aa975d
- add the systemd warning when no arguments are passed (<harald@redhat.com>)
aa975d
aa975d
* Wed Aug 31 2011 Bill Nottingham <notting@redhat.com> 1.3.55-1
aa975d
- update translations (#734631)
aa975d
aa975d
* Tue Jul 19 2011 Bill Nottingham <notting@redhat.com> 1.3.54-1
aa975d
- alternatives: fix --initscript systemd support (#714830)
aa975d
- revert forwarding of 'chkconfig --del' to 'systemctl disable'
aa975d
aa975d
* Fri Jul 15 2011 Bill Nottingham <notting@redhat.com> 1.3.53-1
aa975d
- ntsysv: change the default to configure runlevels 2/3/4/5 (#709254)
aa975d
- alternatives: check whether the --initscript param is a systemd service, act appropriately (#714830)
aa975d
- forward chkconfig --del to systemctl disable where necessary
aa975d
aa975d
* Wed Apr 27 2011 Bill Nottingham <notting@redhat.com> 1.3.52-1
aa975d
- set state before frobbing dependencies (#693202)
aa975d
- ntsysv: don't list or configure service overridden by systemd (#691224)
aa975d
- chkconfig: don't show services overridden by systemd in --list (#693504, #693500)
aa975d
- don't forward to systemd if it's not installed (<arvidjaar@gmail.com>)
aa975d
- update translations
aa975d
aa975d
* Wed Mar 09 2011 Bill Nottingham <notting@redhat.com> 1.3.51-1
aa975d
- further fixes to systemctl integration (<lennart@poettering.net>, <arvidjaar@gmail.com>)
aa975d
aa975d
* Wed Feb 16 2011 Bill Nottingham <notting@redhat.com> 1.3.50-1
aa975d
- forward actions to systemctl when necessary (<lennart@poettering.net>)
aa975d
- assorted translation updates
aa975d
aa975d
* Tue Nov  9 2010 Bill Nottingham <notting@redhat.com> 1.3.49-1
aa975d
- fix abort on free of uninitialized data. (#649227)
aa975d
aa975d
* Wed Oct 27 2010 Bill Nottingham <notting@redhat.com> 1.3.48-1
aa975d
- fix install_initd invocation for services that require $local_fs (#632294)
aa975d
aa975d
* Tue Aug 10 2010 Bill Nottingham <notting@redhat.com> 1.3.47-1
aa975d
- Fix regression introduced in 1.3.45 (#622799)
aa975d
aa975d
* Wed May 05 2010 Bill Nottingham <notting@redhat.com> 1.3.46-1
aa975d
- translation updates: hu, kn, ko (#589187)
aa975d
aa975d
* Thu Mar 04 2010 Bill Nottingham <notting@redhat.com> 1.3.45-1
aa975d
- add support for Should-Start, Should-Stop (#98470, <iarnell@gmail.com>)
aa975d
- ntsysv: don't drop initscripts with '.' in the name (#556751)
aa975d
- translation updates: el, id
aa975d
aa975d
* Tue Sep 29 2009 Bill Nottingham <notting@redhat.com> 1.3.44-1
aa975d
- alternatives: update symlinks if they exist on installation (#104940)
aa975d
- alternatives: clarify error messages with more context (#441443)
aa975d
- alternatives: fix removal of manual links (#525021, <dtardon@redhat.com>)
aa975d
- translation updates: ml, mr, pl, ta, uk
aa975d
aa975d
* Mon Sep 14 2009 Bill Nottingham <notting@redhat.com> 1.3.43-1
aa975d
- ntsysv man page tweak (#516599)
aa975d
- another minor LSB tweak (#474223)
aa975d
- translation updates
aa975d
aa975d
* Fri Mar  6 2009 Bill Nottingham <notting@redhat.com> 1.3.42-1
aa975d
- further LSB fixes (#474223)
aa975d
- throw errors on various malformed init scripts (#481198)
aa975d
- man page updates re: LSB (#487979)
aa975d
- translation updates: mai, gu, pt_BR, ro, ca, pa, sr, fr, hu
aa975d
aa975d
* Tue Jan 20 2009 Bill Nottingham <notting@redhat.com> 1.3.41-1
aa975d
- restore return code & error on unconfigured services (#480805)
aa975d
aa975d
* Fri Dec  5 2008 Bill Nottingham <notting@redhat.com> 1.3.40-1
aa975d
- fix some overflows. (#176944)
aa975d
- add --type parameter to specify either xinetd or sysv services.
aa975d
  (#467863, <mschmidt@redhat.com>
aa975d
- do a permissions check before add/remove/on/off/resetpriorities. (#450254)
aa975d
- parse Short-Description correctly (#441813, <peter_e@gmx.net>)
aa975d
aa975d
* Thu Dec  4 2008 Bill Nottingham <notting@redhat.com> 1.3.39-1
aa975d
- fail if dependencies fail on add/remove in LSB mode (#474223)
aa975d
aa975d
* Wed Oct 29 2008 Bill Nottingham <notting@redhat.com> 1.3.38-1
aa975d
- Fix runlevel list in man page (#466739)
aa975d
- translation updates
aa975d
aa975d
* Thu Nov  8 2007 Bill Nottingham <notting@redhat.com> 1.3.37-1
aa975d
- make no options do --list (#290241, #176184)
aa975d
- sr@Latn -> sr@latin
aa975d
aa975d
* Tue Sep 25 2007 Bill Nottingham <notting@redhat.com> 1.3.36-1
aa975d
- buildreq popt-devel, link it dynamically (#279531)
aa975d
- translation updates: kn, ko, mr, ro
aa975d
aa975d
* Fri Aug  3 2007 Bill Nottingham <notting@redhat.com> 1.3.35-1
aa975d
- clarify licensing
aa975d
aa975d
* Mon Apr 16 2007 Bill Nottingham <notting@redhat.com> 1.3.34-1
aa975d
- translation updates: as, bg, bn_IN, bs, ca, de, fr, hi, hu, id, ja,
aa975d
  ka, ml, ms, nb, or, sk, sl
aa975d
- add resetpriorities to the man page (#197399)
aa975d
  
aa975d
* Tue Feb  6 2007 Bill Nottingham <notting@redhat.com> 1.3.33-1
aa975d
- various changes from review - support alternate %%{_sbindir}, fix
aa975d
  summaries, add version to requires, assorted other bits
aa975d
aa975d
* Fri Feb  2 2007 Bill Nottingham <notting@redhat.com> 1.3.32-1
aa975d
- support overriding various defaults via /etc/chkconfig.d (<johnsonm@rpath.com>)
aa975d
aa975d
* Thu Feb  1 2007 Bill Nottingham <notting@redhat.com> 1.3.31-1
aa975d
- fix man page (#220558, <esr@thyrus.com>)
aa975d
- add some more verbiage in alternatives man page (#221089)
aa975d
- don't print usage message on a nonexstent service (#226804)
aa975d
aa975d
* Fri Dec  1 2006 Bill Nottingham <notting@redhat.com> 1.3.30.1-1
aa975d
- translation updates: as, ka, lv, ml, te (#216617)
aa975d
aa975d
* Thu Sep  7 2006 Bill Nottingham <notting@redhat.com> 1.3.30-1
aa975d
- license cleanup
aa975d
aa975d
* Fri Feb 24 2006 Bill Nottingham <notting@redhat.com> 1.3.29-1
aa975d
- fix accidental enabling of services on --add (#182729)
aa975d
aa975d
* Mon Feb 13 2006 Bill Nottingham <notting@redhat.com> 1.3.27-1
aa975d
- translation updates
aa975d
aa975d
* Thu Feb  2 2006 Bill Nottingham <notting@redhat.com> 1.3.26-1
aa975d
- add support for resetting priorities without on/off status (#178864)
aa975d
aa975d
* Wed Nov 30 2005 Bill Nottingham <notting@redhat.com> 1.3.25-1
aa975d
- return an error if changing services fails (#150235)
aa975d
aa975d
* Fri Nov 18 2005 Bill Nottingham <notting@redhat.com> 1.3.24-1
aa975d
- when removing alternatives links, check to make sure they're
aa975d
  actually links (#173685)
aa975d
aa975d
* Fri Nov 11 2005 Bill Nottingham <notting@redhat.com> 1.3.23-1
aa975d
- fix ntsysv (#172996)
aa975d
aa975d
* Wed Nov  9 2005 Bill Nottingham <notting@redhat.com>
aa975d
- fix doSetService call in frobOneDependencies
aa975d
aa975d
* Tue Nov  8 2005 Bill Nottingham <notting@redhat.com>
aa975d
- for LSB scripts, use any chkconfig: priorities as a basis,
aa975d
  instead of 50/50 (#172599)
aa975d
- fix LSB script dependency setting when no chkconfig: line
aa975d
  is present (#161870, <jean-francois.larvoire@hp.com>)
aa975d
- fix LSB script dependency setting when one of Required-Stop
aa975d
  or Required-Start: is missing (#168457)
aa975d
aa975d
* Fri Oct  7 2005 Bill Nottingham <notting@redhat.com>
aa975d
- fix segfault on directories in /etc/xinetd.d (#166385)
aa975d
- don't needlessly rewrite xinetd files (#81008)
aa975d
aa975d
* Thu May  5 2005 Bill Nottingham <notting@redhat.com> 1.3.20-1
aa975d
- fix deletion of orphaned slave links (#131496, <mitr@redhat.com>)
aa975d
aa975d
* Fri Apr 29 2005 Bill Nottingham <notting@redhat.com> 1.3.19-1
aa975d
- build with updated translations
aa975d
aa975d
* Thu Mar  3 2005 Bill Nottingham <notting@redhat.com> 1.3.18-1
aa975d
- actually return an error code if changing a service info fails
aa975d
aa975d
* Tue Feb 22 2005 Bill Nottingham <notting@redhat.com> 1.3.17-1
aa975d
- more chkconfig: vs. LSB fixes (#149066)
aa975d
aa975d
* Thu Feb 10 2005 Bill Nottingham <notting@redhat.com> 1.3.16-1
aa975d
- prefer chkconfig: start/stop priorities in LSB mode unless
aa975d
  Required-Start/Stop are used
aa975d
aa975d
* Mon Feb  7 2005 Bill Nottingham <notting@redhat.com> 1.3.15-1
aa975d
- print usage when various invalid args are passed (#147393)
aa975d
aa975d
* Wed Feb  2 2005 Bill Nottingham <notting@redhat.com> 1.3.14-1
aa975d
- resize reasonably with larger screens (#74156)
aa975d
- don't error out completely on bad symlink (#74324)
aa975d
- use ngettext (#106176)
aa975d
- error out on invalid start/stop values (#109858)
aa975d
- some man page updates
aa975d
- fix return code of chkconfig for xinetd services (#63123)
aa975d
- sort chkconfig --list display (#61576, <shishz@alum.rpi.edu>)
aa975d
aa975d
* Tue Jan 11 2005 Bill Nottingham <notting@redhat.com> 1.3.13-1
aa975d
- fix LSB comment parsing some more (#144739)
aa975d
aa975d
* Thu Oct 28 2004 Bill Nottingham <notting@redhat.com> 1.3.11.2-1
aa975d
- fix manpage reference (#137492)
aa975d
aa975d
* Fri Oct  1 2004 Bill Nottingham <notting@redhat.com> 1.3.11.1-1
aa975d
- rebuild with updated translations
aa975d
aa975d
* Fri Jun  4 2004 Bill Nottingham <notting@redhat.com> 1.3.11-1
aa975d
- fix LSB comment parsing (#85678)
aa975d
aa975d
* Wed May 29 2004 Bill Nottingham <notting@redhat.com> 1.3.10-1
aa975d
- mark alternatives help output for translation (#110526)
aa975d
aa975d
* Wed Oct 22 2003 Bill Nottingham <notting@redhat.com> 1.3.9-1
aa975d
- update translations
aa975d
aa975d
* Mon Jul 28 2003 Bill Nottingham <notting@redhat.com> 1.3.8-4
aa975d
- rebuild
aa975d
aa975d
* Tue May 13 2003 Dan Walsh <dwalsh@redhat.com> 1.3.8-3
aa975d
- Update for RHEL
aa975d
aa975d
* Thu May 8 2003 Dan Walsh <dwalsh@redhat.com> 1.3.8-2
aa975d
- Fix readXinetdServiceInfo to return error on not regular files
aa975d
- Fix chkconfig to not write messages if readXinetdServiceInfo gets an error
aa975d
aa975d
* Fri Jan 31 2003 Bill Nottingham <notting@redhat.com> 1.3.8-1
aa975d
- fix some wording in alternatives (#76213)
aa975d
- actually mark alternatives for translation
aa975d
aa975d
* Thu Dec 12 2002 Elliot Lee <sopwith@redhat.com> 1.3.7-1
aa975d
- Link to libpopt in a multilib-safe fashion.
aa975d
aa975d
* Thu Aug 29 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.3.6-3
aa975d
- bump
aa975d
aa975d
* Thu Aug 15 2002 Bill Nottingham <notting@redhat.com> 1.3.6-2
aa975d
- rebuild against new newt
aa975d
aa975d
* Mon Aug 12 2002 Bill Nottingham <notting@redhat.com> 1.3.6-1
aa975d
- make on and off handle runlevel 2 too (#70766)
aa975d
aa975d
* Mon Apr 15 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.3.5-3
aa975d
- Update translations
aa975d
aa975d
* Mon Apr 15 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.3.5-2
aa975d
- Update translations
aa975d
aa975d
* Sun Apr  7 2002 Jeremy Katz <katzj@redhat.com> 1.3.5-1
aa975d
- alternatives: handle default with --config properly (#62009)
aa975d
aa975d
* Thu Mar 14 2002 Bill Nottingham <notting@redhat.com> 1.3.4-1
aa975d
- don't apply the dependency logic to things that already have
aa975d
  start/stop priorities
aa975d
- fix silly display bug in --config
aa975d
aa975d
* Tue Mar 12 2002 Bill Nottingham <notting@redhat.com> 1.3.2-1
aa975d
- chkconfig: LSB support
aa975d
aa975d
* Fri Mar  8 2002 Bill Nottingham <notting@redhat.com>
aa975d
- alternatives: handle initscripts too; --initscript command-line option
aa975d
- chkconfig/ntsysv (and serviceconf, indirectly): services with
aa975d
   *no* links in /etc/rc*.d are no longer displayed with --list, or
aa975d
   available for configuration except via chkconfig command-line options
aa975d
- alternatives: fix trying to enable disable a null service
aa975d
aa975d
* Tue Mar  5 2002 Bill Nottingham <notting@redhat.com>
aa975d
- alternatives: handle things with different numbers of slave links
aa975d
aa975d
* Mon Mar  4 2002 Bill Nottingham <notting@redhat.com>
aa975d
- minor alternatives tweaks: don't install the same thing multiple times
aa975d
aa975d
* Wed Jan 30 2002 Bill Nottingham <notting@redhat.com>
aa975d
- actually, put the alternatives stuff back in /usr/sbin
aa975d
- ship /etc/alternatives dir
aa975d
- random alternatives fixes
aa975d
aa975d
* Sun Jan 27 2002 Erik Troan <ewt@redhat.com>
aa975d
- reimplemented update-alternatives as just alternatives
aa975d
aa975d
* Thu Jan 25 2002 Bill Nottingham <notting@redhat.com>
aa975d
- add in update-alternatives stuff (perl ATM)
aa975d
aa975d
* Mon Aug 27 2001 Trond Eivind Glomsrød <teg@redhat.com>
aa975d
- Update translations
aa975d
aa975d
* Tue Jun 12 2001 Bill Nottingham <notting@redhat.com>
aa975d
- don't segfault on files that are exactly the length of a page size
aa975d
  (#44199, <kmori@redhat.com>)
aa975d
aa975d
* Sun Mar  4 2001 Bill Nottingham <notting@redhat.com>
aa975d
- don't show xinetd services in ntsysv if xinetd doesn't appear to be
aa975d
  installed (#30565)
aa975d
aa975d
* Wed Feb 14 2001 Preston Brown <pbrown@redhat.com>
aa975d
- final translation update.
aa975d
aa975d
* Tue Feb 13 2001 Preston Brown <pbrown@redhat.com>
aa975d
- warn in ntsysv if not running as root.
aa975d
aa975d
* Fri Feb  2 2001 Preston Brown <pbrown@redhat.com>
aa975d
- use lang finder script
aa975d
aa975d
* Fri Feb  2 2001 Bill Nottingham <notting@redhat.com>
aa975d
- finally fix the bug Nalin keeps complaining about :)
aa975d
aa975d
* Wed Jan 24 2001 Preston Brown <pbrown@redhat.com>
aa975d
- final i18n update before Beta.
aa975d
aa975d
* Wed Oct 18 2000 Bill Nottingham <notting@redhat.com>
aa975d
- ignore .rpmnew files (#18915)
aa975d
- fix typo in error message (#17575)
aa975d
aa975d
* Wed Aug 30 2000 Nalin Dahyabhai <nalin@redhat.com>
aa975d
- make xinetd config files mode 0644, not 644
aa975d
aa975d
* Thu Aug 24 2000 Erik Troan <ewt@redhat.com>
aa975d
- updated it and es translations
aa975d
aa975d
* Sun Aug 20 2000 Bill Nottingham <notting@redhat.com>
aa975d
- get man pages in proper packages
aa975d
aa975d
* Sun Aug 20 2000 Matt Wilson <msw@redhat.com>
aa975d
- new translations
aa975d
aa975d
* Tue Aug 16 2000 Nalin Dahyabhai <nalin@redhat.com>
aa975d
- don't worry about extra whitespace on chkconfig: lines (#16150)
aa975d
aa975d
* Wed Aug 10 2000 Trond Eivind Glomsrød <teg@redhat.com>
aa975d
- i18n merge
aa975d
aa975d
* Wed Jul 26 2000 Matt Wilson <msw@redhat.com>
aa975d
- new translations for de fr it es
aa975d
aa975d
* Tue Jul 25 2000 Bill Nottingham <notting@redhat.com>
aa975d
- change prereqs
aa975d
aa975d
* Sun Jul 23 2000 Bill Nottingham <notting@redhat.com>
aa975d
- fix ntsysv's handling of xinetd/init files with the same name
aa975d
aa975d
* Fri Jul 21 2000 Bill Nottingham <notting@redhat.com>
aa975d
- fix segv when reading malformed files
aa975d
aa975d
* Wed Jul 19 2000 Bill Nottingham <notting@redhat.com>
aa975d
- put links, rc[0-6].d dirs back, those are necessary
aa975d
aa975d
* Tue Jul 18 2000 Bill Nottingham <notting@redhat.com>
aa975d
- add quick hack support for reading descriptions from xinetd files
aa975d
aa975d
* Mon Jul 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
aa975d
- don't own the /etc/rc[0-6].d symlinks; they're owned by initscripts
aa975d
aa975d
* Sat Jul 15 2000 Matt Wilson <msw@redhat.com>
aa975d
- move back to old file layout
aa975d
aa975d
* Thu Jul 13 2000 Preston Brown <pbrown@redhat.com>
aa975d
- bump copyright date
aa975d
aa975d
* Tue Jul 11 2000 Bill Nottingham <notting@redhat.com>
aa975d
- no %%pre today. Maybe tomorrow.
aa975d
aa975d
* Thu Jul  6 2000 Bill Nottingham <notting@redhat.com>
aa975d
- put initscripts %%pre here too
aa975d
aa975d
* Mon Jul  3 2000 Bill Nottingham <notting@redhat.com>
aa975d
- oops, if we don't prereq initscripts, we *need* to own /etc/rc[0-6].d
aa975d
aa975d
* Sun Jul  2 2000 Bill Nottingham <notting@redhat.com>
aa975d
- add xinetd support
aa975d
aa975d
* Tue Jun 27 2000 Matt Wilson <msw@redhat.com>
aa975d
- changed Prereq: initscripts >= 5.18 to Conflicts: initscripts < 5.18
aa975d
- fixed sumary and description where a global string replace nuked them
aa975d
aa975d
* Mon Jun 26 2000 Matt Wilson <msw@redhat.com>
aa975d
- what Bill said, but actually build this version
aa975d
aa975d
* Thu Jun 15 2000 Bill Nottingham <notting@redhat.com>
aa975d
- don't own /etc/rc.*
aa975d
aa975d
* Fri Feb 11 2000 Bill Nottingham <notting@redhat.com>
aa975d
- typo in man page
aa975d
aa975d
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
aa975d
- fix description
aa975d
aa975d
* Wed Jan 12 2000 Bill Nottingham <notting@redhat.com>
aa975d
- link chkconfig statically against popt
aa975d
aa975d
* Mon Oct 18 1999 Bill Nottingham <notting@redhat.com>
aa975d
- fix querying alternate levels
aa975d
aa975d
* Mon Aug 23 1999 Jeff Johnson <jbj@redhat.com>
aa975d
- don't use strchr to skip unwanted files, look at extension instead (#4166).
aa975d
aa975d
* Thu Aug  5 1999 Bill Nottingham <notting@redhat.com>
aa975d
- fix --help, --verson
aa975d
aa975d
* Mon Aug  2 1999 Matt Wilson <msw@redhat.com>
aa975d
- rebuilt ntsysv against newt 0.50
aa975d
aa975d
* Mon Aug  2 1999 Jeff Johnson <jbj@redhat.com>
aa975d
- fix i18n problem in usage message (#4233).
aa975d
- add --help and --version.
aa975d
aa975d
* Mon Apr 19 1999 Cristian Gafton <gafton@redhat.com>
aa975d
- release for Red Hat 6.0
aa975d
aa975d
* Thu Apr  8 1999 Matt Wilson <msw@redhat.com>
aa975d
- added support for a "hide: true" tag in initscripts that will make
aa975d
  services not appear in ntsysv when run with the "--hide" flag
aa975d
aa975d
* Thu Apr  1 1999 Matt Wilson <msw@redhat.com>
aa975d
- added --hide flag for ntsysv that allows you to hide a service from the
aa975d
  user.
aa975d
aa975d
* Mon Mar 22 1999 Bill Nottingham <notting@redhat.com>
aa975d
- fix glob, once and for all. Really. We mean it.
aa975d
aa975d
* Thu Mar 18 1999 Bill Nottingham <notting@redhat.com>
aa975d
- revert fix for services@levels, it's broken
aa975d
- change default to only edit the current runlevel
aa975d
aa975d
* Mon Mar 15 1999 Bill Nottingham <notting@redhat.com>
aa975d
- don't remove scripts that don't support chkconfig
aa975d
aa975d
* Tue Mar 09 1999 Erik Troan <ewt@redhat.com>
aa975d
- made glob a bit more specific so xinetd and inetd don't cause improper matches
aa975d
aa975d
* Thu Feb 18 1999 Matt Wilson <msw@redhat.com>
aa975d
- removed debugging output when starting ntsysv
aa975d
aa975d
* Thu Feb 18 1999 Preston Brown <pbrown@redhat.com>
aa975d
- fixed globbing error
aa975d
- fixed ntsysv running services not at their specified levels.
aa975d
aa975d
* Tue Feb 16 1999 Matt Wilson <msw@redhat.com>
aa975d
- print the value of errno on glob failures.
aa975d
aa975d
* Sun Jan 10 1999 Matt Wilson <msw@redhat.com>
aa975d
- rebuilt for newt 0.40 (ntsysv)
aa975d
aa975d
* Tue Dec 15 1998 Jeff Johnson <jbj@redhat.com>
aa975d
- add ru.po.
aa975d
aa975d
* Thu Oct 22 1998 Bill Nottingham <notting@redhat.com>
aa975d
- build for Raw Hide (slang-1.2.2)
aa975d
aa975d
* Wed Oct 14 1998 Cristian Gafton <gafton@redhat.com>
aa975d
- translation updates
aa975d
aa975d
* Thu Oct 08 1998 Cristian Gafton <gafton@redhat.com>
aa975d
- updated czech translation (and use cs instead of cz)
aa975d
aa975d
* Tue Sep 22 1998 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
aa975d
- added pt_BR translations
aa975d
- added more translatable strings
aa975d
- support for i18n init.d scripts description
aa975d
aa975d
* Sun Aug 02 1998 Erik Troan <ewt@redhat.com>
aa975d
- built against newt 0.30
aa975d
- split ntsysv into a separate package
aa975d
aa975d
* Thu May 07 1998 Erik Troan <ewt@redhat.com>
aa975d
- added numerous translations
aa975d
aa975d
* Mon Mar 23 1998 Erik Troan <ewt@redhat.com>
aa975d
- added i18n support
aa975d
aa975d
* Sun Mar 22 1998 Erik Troan <ewt@redhat.com>
aa975d
- added --back