Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 68934 | Differences between
and this patch

Collapse All | Expand All

(-)rp-pppoe-3.5/scripts/adsl-connect.in (-1 / +6 lines)
Line 0 Link Here
1
diff -Naur rp-pppoe-3.5/configs/pppoe.conf rp-pppoe-3.5.patched/configs/pppoe.conf
2
--- rp-pppoe-3.5/configs/pppoe.conf	2002-07-08 16:38:24.000000000 +0200
Lines 69-75 Link Here
69
    exit 1
69
    exit 1
70
fi
70
fi
71
71
72
. $CONFIG
72
# Read the named pipe (/dev/fd/foo) into a variable so we can use it
73
# again later (since reading once from the pipe will exhaust it)
74
CONFREAD=$(<$CONFIG)
75
eval "$CONFREAD"
73
76
74
PPPOE_PIDFILE="$PIDFILE.pppoe"
77
PPPOE_PIDFILE="$PIDFILE.pppoe"
75
PPPD_PIDFILE="$PIDFILE.pppd"
78
PPPD_PIDFILE="$PIDFILE.pppd"
(-)rp-pppoe-3.5/scripts/adsl-status (-1 / +4 lines)
Lines 35-41 Link Here
35
    exit 1
35
    exit 1
36
fi
36
fi
37
37
38
. $CONFIG
38
# Read the named pipe (/dev/fd/foo) into a variable so we can use it
39
# again later (since reading once from the pipe will exhaust it)
40
CONFREAD=$(<$CONFIG)
41
eval "$CONFREAD"
39
42
40
PPPOE_PIDFILE="$PIDFILE.pppoe"
43
PPPOE_PIDFILE="$PIDFILE.pppoe"
41
PPPD_PIDFILE="$PIDFILE.pppd"
44
PPPD_PIDFILE="$PIDFILE.pppd"
(-)rp-pppoe-3.5/scripts/adsl-stop.in (-1 / +4 lines)
Lines 38-44 Link Here
38
    exit 1
38
    exit 1
39
fi
39
fi
40
40
41
. $CONFIG
41
# Read the named pipe (/dev/fd/foo) into a variable so we can use it
42
# again later (since reading once from the pipe will exhaust it)
43
CONFREAD=$(<$CONFIG)
44
eval "$CONFREAD"
42
45
43
PPPOE_PIDFILE="$PIDFILE.pppoe"
46
PPPOE_PIDFILE="$PIDFILE.pppoe"
44
PPPD_PIDFILE="$PIDFILE.pppd"
47
PPPD_PIDFILE="$PIDFILE.pppd"

Return to bug 68934