You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
151 B

  1. #!/bin/sh /etc/rc.common
  2. START=90
  3. STOP=10
  4. start() {
  5. ipsec start
  6. }
  7. stop() {
  8. ipsec stop
  9. }
  10. restart() {
  11. ipsec restart
  12. }
  13. reload() {
  14. ipsec update
  15. }