Somewhat related to T1246.
I'm trying to pass arguments to my --route-up script, like this:
set interfaces openvpn vtun0 openvpn-option "--route-up /config/auth/tun_up.sh arg1 arg2"
It doesn't work and openvpn will exit with:
Options error: the --route-up directive should have at most 1 parameter. To pass a list of arguments as one of the parameters, try enclosing them in double quotes ("").
The following doesn't work:
set interfaces openvpn vtun0 openvpn-option "--route-up '/config/auth/tun_up.sh arg1 arg2'"
and will give the error:
Cannot use the single quote (') character in a value string Value validation failed Set failed
Is there any solution for this?