fold the _init callback into _init_config
[project/netifd.git] / dummy / proto / ppp.sh
1 #!/bin/sh
2
3 . ../netifd-proto.sh
4 init_proto "$@"
5
6 ppp_generic_init_config() {
7         proto_config_add_string "username"
8         proto_config_add_string "password"
9         proto_config_add_int "keepalive"
10 }
11
12 ppp_init_config() {
13         no_device=1
14         available=1
15         ppp_generic_init_config
16 }
17
18 ppp_setup() {
19         echo "ppp_setup($1): $2"
20 }
21
22 ppp_teardown() {
23         return
24 }
25
26 add_protocol ppp
27
28 pppoe_init_config() {
29         ppp_generic_init_config
30 }
31
32 pppoe_setup() {
33         local interface="$1"
34         local device="$2"
35
36         json_get_var username username
37         json_get_var password password
38         echo "pppoe_setup($interface, $device), username=$username, password=$password"
39         proto_init_update ppp0 1
40         proto_add_ipv4_address "192.168.2.1" 32
41         proto_add_dns_server "192.168.2.2"
42         proto_send_update "$interface"
43         proto_run_command "$interface" sleep 30
44 }
45
46 pppoe_teardown() {
47         [ "$ERROR" = 9 ] && {
48                 proto_notify_error "$interface" PROCESS_KILLED
49                 proto_block_restart "$interface"
50         }
51         proto_kill_command "$interface"
52         return
53 }
54
55 add_protocol pppoe