Bug 106034

Summary: chkconfig --list not displaying correct info for new scripts
Product: [Retired] Red Hat Linux Reporter: albanard <albanard>
Component: chkconfigAssignee: Bill Nottingham <notting>
Status: CLOSED NOTABUG QA Contact: Ben Levenson <benl>
Severity: medium Docs Contact:
Priority: medium    
Version: 9CC: rvokal
Target Milestone: ---   
Target Release: ---   
Hardware: i686   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2003-10-02 14:50:38 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description albanard 2003-10-02 07:04:18 UTC
From Bugzilla Helper:
User-Agent: Opera/7.20 (X11; Linux i686; U)  [en]

Description of problem:
After adding a new script using chkconfig, then running chkconfig --list on that 
script, all runlevels are displayed as off even though sym-links have been 
created in the rc directories.

Version-Release number of selected component (if applicable):
1.3.8

How reproducible:
Always

Steps to Reproduce:
# This script will reproduce the problem. Creates a file called "testfile" in 
/etc/init.d
cd /etc/init.d
echo "# chkconfig: 2345 107 94" > testfile
echo "# description: print starting or stopping to stdout" >> testfile
echo "case \$1 in" >> testfile
echo "'start')" >> testfile
echo "echo \"starting testservice\"" >> testfile
echo ";;" >> testfile
echo "'stop')" >> testfile
echo "echo \"stopping testservice\"" >> testfile
echo ";;" >> testfile
echo "*)" >> testfile
echo "echo \"Invalid argument. Usage: testfile start | stop\"" >> testfile
echo ";;" >> testfile
echo "esac" >> testfile
chmod 0755 testfile
chown root:root testfile
chkconfig --add testfile
chkconfig testfile on
chkconfig --list testfile
for i in  1 2 3 4 5 6
do
ls /etc/rc$i.d/*testfile*
done

Actual Results:  testfile        0:off   1:off   2:off   3:off   4:off   5:off   
6:off
/etc/rc1.d/K94testfile
/etc/rc2.d/S107testfile
/etc/rc3.d/S107testfile
/etc/rc4.d/S107testfile
/etc/rc5.d/S107testfile
/etc/rc6.d/K94testfile


Expected Results:  testfile        0:off   1:off   2:on   3:on   4:on   5:on   
6:off
/etc/rc1.d/K94testfile
/etc/rc2.d/S107testfile
/etc/rc3.d/S107testfile
/etc/rc4.d/S107testfile
/etc/rc5.d/S107testfile
/etc/rc6.d/K94testfile


Additional info:

Comment 1 Bill Nottingham 2003-10-02 14:50:38 UTC
Start/stop priorities only go from 0-99.

Comment 2 albanard 2003-10-02 23:53:54 UTC
Ahhh... Thanking you very much.