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