8 lines
136 B
Plaintext
8 lines
136 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
test -f /etc/default/stunnel4 && . /etc/default/stunnel4
|
||
|
test "$PPP_RESTART" != "0" || exit 0
|
||
|
|
||
|
|
||
|
invoke-rc.d stunnel4 restart
|