diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-08-02 19:36:39 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-08-02 19:36:42 +0200 |
commit | f2cc87a259df1d2ab4d0a7eb366224a238422048 (patch) | |
tree | 2e3f97e21af0db21be9f70d977855198db3665a8 /op-mode-definitions/connect-disconnect.xml | |
parent | 9f67250480d1e6727424d00212d69f008ffdb647 (diff) | |
download | vyos-1x-f2cc87a259df1d2ab4d0a7eb366224a238422048.tar.gz vyos-1x-f2cc87a259df1d2ab4d0a7eb366224a238422048.zip |
op-mode: use individual XML files for connect and disconnect
Diffstat (limited to 'op-mode-definitions/connect-disconnect.xml')
-rw-r--r-- | op-mode-definitions/connect-disconnect.xml | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/op-mode-definitions/connect-disconnect.xml b/op-mode-definitions/connect-disconnect.xml deleted file mode 100644 index ea2883e0b..000000000 --- a/op-mode-definitions/connect-disconnect.xml +++ /dev/null @@ -1,46 +0,0 @@ -<?xml version="1.0"?> -<interfaceDefinition> - <node name="connect"> - <properties> - <help>Establish connection</help> - </properties> - <children> - <tagNode name="console"> - <properties> - <help>Connect to device attached to serial console server</help> - <completionHelp> - <path>service console-server device</path> - </completionHelp> - </properties> - <command>/usr/bin/console "$3"</command> - </tagNode> - <tagNode name="interface"> - <properties> - <help>Bring up 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 --connect "$3"</command> - </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> |