Blame SPECS/chkconfig.spec

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