]> TLD Linux GIT Repositories - rc-scripts.git/blob - ppp/ip-up
- disable lock checks (happens on LUKS2 and fails during system boot)
[rc-scripts.git] / ppp / ip-up
1 #!/bin/sh
2 #
3 # This file should not be modified
4 #
5 # This script is run by the pppd after the link is established.
6 #
7 # This script is called with the following arguments:
8 #       Arg     Name                            Example
9 #       $1      Interface name                  ppp0
10 #       $2      The tty                         ttyS1
11 #       $3      The link speed                  38400
12 #       $4      Local IP number                 12.34.56.78
13 #       $5      Peer IP number                  12.34.56.99
14 #       $6      Optional ``ipparam'' value      foo
15
16 set +e
17
18 # The environment is cleared before executing this script
19 # so the path must be reset
20 PATH=/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin
21 export PATH
22 # These variables are for the use of the scripts run by run-parts
23 PPP_IFACE="$1"
24 PPP_TTY="$2"
25 PPP_SPEED="$3"
26 PPP_LOCAL="$4"
27 PPP_REMOTE="$5"
28 PPP_IPPARAM="$6"
29 export PPP_IFACE PPP_TTY PPP_SPEED PPP_LOCAL PPP_REMOTE PPP_IPPARAM
30
31 . /etc/rc.d/init.d/functions
32 . /lib/rc-scripts/functions.network
33 CONFIG="/etc/sysconfig/interfaces/ifcfg-$PPP_IPPARAM"
34 source_config
35
36 # as an additional convenience, $PPP_TTYNAME is set to the tty name,
37 # stripped of /dev/ (if present) for easier matching.
38 PPP_TTYNAME=$(basename "$PPP_TTY")
39 export PPP_TTYNAME
40
41 # Main Script starts here
42 [ -x /etc/ppp/ip-up.local ] && /etc/ppp/ip-up.local
43
44 run-parts /etc/sysconfig/interfaces/up.d/ppp
45
46 /lib/rc-scripts/ifup-post "$CONFIG"
47
48 exit 0