21 lines
151 B
Plaintext
21 lines
151 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
START=90
|
||
|
STOP=10
|
||
|
|
||
|
start() {
|
||
|
ipsec start
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
ipsec stop
|
||
|
}
|
||
|
|
||
|
restart() {
|
||
|
ipsec restart
|
||
|
}
|
||
|
|
||
|
reload() {
|
||
|
ipsec update
|
||
|
}
|