Changes

Line 5: Line 5:  
This article will provide some examples on the usage of User Scripts. Although it must be noted that one should be at least be partially familiar with the syntax and basic principles of shell scripts beforehand as this guide will not provide a tutorial on shell scripts themselves.
 
This article will provide some examples on the usage of User Scripts. Although it must be noted that one should be at least be partially familiar with the syntax and basic principles of shell scripts beforehand as this guide will not provide a tutorial on shell scripts themselves.
   −
==Example 1: test script==
+
#!/bin/ash
 
+
HOST=10.10.10.10
 
+
if ping -c5 $HOST > /dev/null; then
 +
  echo "$HOST responded; VPN is up!"
 +
else
 +
  echo "$HOST did not respond; trying to restart VPN"
 +
  /usr/sbin/ipsec restart
    
==Example 2: filtering SMS messages==
 
==Example 2: filtering SMS messages==
Anonymous user