summaryrefslogtreecommitdiff
path: root/op-mode-definitions
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-08-02 19:36:39 +0200
committerChristian Poessinger <christian@poessinger.com>2020-08-02 19:36:42 +0200
commitf2cc87a259df1d2ab4d0a7eb366224a238422048 (patch)
tree2e3f97e21af0db21be9f70d977855198db3665a8 /op-mode-definitions
parent9f67250480d1e6727424d00212d69f008ffdb647 (diff)
downloadvyos-1x-f2cc87a259df1d2ab4d0a7eb366224a238422048.tar.gz
vyos-1x-f2cc87a259df1d2ab4d0a7eb366224a238422048.zip
op-mode: use individual XML files for connect and disconnect
Diffstat (limited to 'op-mode-definitions')
-rw-r--r--op-mode-definitions/connect.xml (renamed from op-mode-definitions/connect-disconnect.xml)17
-rw-r--r--op-mode-definitions/disconnect.xml20
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>