Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
OpenVpnParams
archive_file as string
Path to configuration zip
obfuscated_secret as string
Encrypted passphrase for protected certificates
InstallAndRun(params as OpenVpnParams) as Boolean
Install configuration and run
openvpn Uninstall() as Boolean
Stop and uninstall configuration
Example
Code Block | ||
---|---|---|
| ||
ovpn = CreateObject("roOpenVpn") params = {} params.archive_file = "openvpn.zip" ovpn.InstallAndRun(params) ovpn.Uninstall() |