don't run by default, but do run chkconfig --add (#183633)

This commit is contained in:
Bill Nottingham 2006-03-08 20:39:23 +00:00
parent 96905ffb8c
commit e966dc8d86
2 changed files with 7 additions and 6 deletions

View File

@ -9,7 +9,7 @@
#
# Copyright 2005 Red Hat, Inc.
#
# chkconfig: 2345 20 80
# chkconfig: - 20 80
#
# Author: Jeff Moyer <jmoyer@redhat.com>

View File

@ -1,6 +1,6 @@
Name: kexec-tools
Version: 1.101
Release: 15
Release: 16
License: GPL
Group: Applications/System
Summary: The kexec/kdump userspace component.
@ -69,10 +69,7 @@ KDUMP_COMMANDLINE=`cat /proc/cmdline`
KDUMP_COMMANDLINE=`echo $KDUMP_COMMANDLINE | sed -e 's/crashkernel=[0-9]\+M@[0-9]\+M//g'`
export KDUMP_COMMANDLINE
sed -i -e "s|REPLACEME|$KDUMP_COMMANDLINE irqpoll|g" /etc/sysconfig/kdump
# No longer add kdump service by default, let the user add it manually
# to avoid everyone to see a warning.
# chkconfig --add kdump
/sbin/chkconfig --add kdump
%postun
@ -99,6 +96,10 @@ exit 0
%doc TODO
%changelog
* Wed Mar 08 2006 Bill Nottingham <notting@redhat.com> - 1.101-16
- fix scriptlet - call chkconfig --add, change the default in the
script itself (#183633)
* Wed Mar 08 2006 Thomas Graf <tgraf@redhat.com> - 1.101-15
- Don't add kdump service by default, let the user manually add it to
avoid everyone seeing a warning.