Bug 29378

Summary: Settings extra options does not work
Product: [Retired] Red Hat Linux Reporter: Enrico Scholz <rh-bugzilla>
Component: internet-configAssignee: Than Ngo <than>
Status: CLOSED RAWHIDE QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 7.1   
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: 2001-02-25 12:31:02 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 Enrico Scholz 2001-02-25 12:30:59 UTC
/etc/init.d/isdn:409 contains the statement

| if [ -f /etc/ppp/options-$1 ]; then
|   options="$option `cat /etc/ppp/options-$1`"
| fi

There is missing an 's' after '$option' so ipppd will be called with the
extra-options from the cat'ed file only.

The correct statement should be

| if [ -f /etc/ppp/options-$1 ]; then
|   options="$options `cat /etc/ppp/options-$1`"
| fi

Comment 1 Ngo Than 2001-02-26 09:52:11 UTC
It's fixed with internet-config-0.33-1. Thanks