add support for killing running proto-shell tasks with an arbitrary signal and waitin...
[project/netifd.git] / dummy / proto / ppp.sh
index 5078833..837767b 100755 (executable)
@@ -33,12 +33,21 @@ pppoe_init() {
 }
 
 pppoe_setup() {
+       local interface="$1"
+       local device="$2"
+
        json_get_var username username
        json_get_var password password
-       echo "pppoe_setup($1, $2), username=$username, password=$password"
+       echo "pppoe_setup($interface, $device), username=$username, password=$password"
+       proto_init_update ppp0 1
+       proto_add_ipv4_address "192.168.2.1" 32
+       proto_add_dns_server "192.168.2.2"
+       proto_send_update "$interface"
+       proto_run_command "$interface" sleep 10
 }
 
 pppoe_teardown() {
+       proto_kill_command "$interface"
        return
 }