diff options
-rw-r--r-- | op-mode-definitions/connect.xml (renamed from op-mode-definitions/connect-disconnect.xml) | 17 | ||||
-rw-r--r-- | op-mode-definitions/disconnect.xml | 20 |
2 files changed, 20 insertions, 17 deletions
diff --git a/op-mode-definitions/connect-disconnect.xml b/op-mode-definitions/connect.xml index ea2883e0b..1ec62949a 100644 --- a/op-mode-definitions/connect-disconnect.xml +++ b/op-mode-definitions/connect.xml @@ -26,21 +26,4 @@ </tagNode> </children> </node> - <node name="disconnect"> - <properties> - <help>Take down a connection</help> - </properties> - <children> - <tagNode name="interface"> - <properties> - <help>Take down a connection-oriented network interface</help> - <completionHelp> - <path>interfaces pppoe</path> - <path>interfaces wirelessmodem</path> - </completionHelp> - </properties> - <command>sudo ${vyos_op_scripts_dir}/connect_disconnect.py --disconnect "$3"</command> - </tagNode> - </children> - </node> </interfaceDefinition> diff --git a/op-mode-definitions/disconnect.xml b/op-mode-definitions/disconnect.xml new file mode 100644 index 000000000..bf2c37b89 --- /dev/null +++ b/op-mode-definitions/disconnect.xml @@ -0,0 +1,20 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="disconnect"> + <properties> + <help>Take down a connection</help> + </properties> + <children> + <tagNode name="interface"> + <properties> + <help>Take down a connection-oriented network interface</help> + <completionHelp> + <path>interfaces pppoe</path> + <path>interfaces wirelessmodem</path> + </completionHelp> + </properties> + <command>sudo ${vyos_op_scripts_dir}/connect_disconnect.py --disconnect "$3"</command> + </tagNode> + </children> + </node> +</interfaceDefinition> |