diff options
author | Kim Hagen <kim@sentrium.io> | 2021-09-02 09:58:42 -0500 |
---|---|---|
committer | Kim Hagen <kim@sentrium.io> | 2021-09-02 09:58:42 -0500 |
commit | e3c71af1466da42403fa23bc23e7e530df71c6c8 (patch) | |
tree | 7f2c6072abadfaf876887be48e22d712ffdb3784 /op-mode-definitions | |
parent | 87ee779a977e6b643d4131eb5d89b1264c3bdf55 (diff) | |
download | vyos-1x-e3c71af1466da42403fa23bc23e7e530df71c6c8.tar.gz vyos-1x-e3c71af1466da42403fa23bc23e7e530df71c6c8.zip |
remove secrets file if the tunnel is deleted and fix opmode commands
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/openvpn.xml.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/op-mode-definitions/openvpn.xml.in b/op-mode-definitions/openvpn.xml.in index ee3b073b5..6549976c5 100644 --- a/op-mode-definitions/openvpn.xml.in +++ b/op-mode-definitions/openvpn.xml.in @@ -59,27 +59,27 @@ <properties> <help>Show OpenVPN interface users</help> <completionHelp> - <script>sudo ${vyos_completion_dir}/list_openvpn_users.py --interface "$4"</script> + <script>sudo ${vyos_completion_dir}/list_openvpn_users.py --interface ${COMP_WORDS[3]}</script> </completionHelp> </properties> <children> - <leafNode name="2fa secret"> + <leafNode name="2fa-secret"> <properties> <help>Show 2fa authentication secret</help> </properties> - <command>${vyos_op_scripts_dir}/show_openvpn_2fa.py --user="$4" --intf="$6" --action=sercret</command> + <command>${vyos_op_scripts_dir}/show_openvpn_2fa.py --user="$6" --intf="$4" --action=secret</command> </leafNode> - <leafNode name="2fa otpauth uri"> + <leafNode name="2fa-uri"> <properties> <help>Show 2fa otpauth uri</help> </properties> - <command>${vyos_op_scripts_dir}/show_openvpn_2fa.py --user="$4" --intf="$6" --action=uri</command> + <command>${vyos_op_scripts_dir}/show_openvpn_2fa.py --user="$6" --intf="$4" --action=uri</command> </leafNode> - <leafNode name="2fa QR code"> + <leafNode name="2fa-QRcode"> <properties> <help>Show 2fa QR code</help> </properties> - <command>${vyos_op_scripts_dir}/show_openvpn_2fa.py --user="$4" --intf="$6" --action=qrcode</command> + <command>${vyos_op_scripts_dir}/show_openvpn_2fa.py --user="$6" --intf="$4" --action=qrcode</command> </leafNode> </children> </tagNode> |