Bug 19029

Summary: Apparent typo in /etc/rc.d/init.d/isdn
Product: [Retired] Red Hat Linux Reporter: Arthur van Leeuwen <arthurvl>
Component: isdn-configAssignee: Than Ngo <than>
Status: CLOSED RAWHIDE QA Contact: David Lawrence <dkl>
Severity: medium Docs Contact:
Priority: medium    
Version: 7.0CC: xkuang
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2000-10-13 07:00:04 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 Arthur van Leeuwen 2000-10-13 07:00:00 UTC
Line 386 of /etc/rc.d/init.d/isdn from isdn-config-0.17-7 reads

            if [ -n "SLAVE_TRIGGER" ]; then

which tests if a fixed string is of non-zero length. This should probably
be

            if [ -n "$SLAVE_TRIGGER" ]; then

so that variable expansion takes place on $SLAVE_TRIGGER. Note that
$SLAVE_TRIGGER is used in the following line in the script in the following
fashion:
                log_isdnctrl trigger $slave $SLAVE_TRIGGER

Comment 1 Ngo Than 2000-10-13 12:48:36 UTC
It's fixed. you will find it in rawhide soon. thanks