diff options
author | Dmytro Aleksandrov <alkersan@gmail.com> | 2019-08-19 21:05:18 +0300 |
---|---|---|
committer | Dmytro Aleksandrov <alkersan@gmail.com> | 2019-08-19 21:05:18 +0300 |
commit | ab4371d058f8684fcbc501be34153b0d3b3c36db (patch) | |
tree | 6d4945c8b40dc378de30f3dbf9df1e9031ed95aa /templates/telnet | |
parent | 437867584488ec3bf1bdd28ddfdd45410e9a5bf9 (diff) | |
download | vyatta-op-ab4371d058f8684fcbc501be34153b0d3b3c36db.tar.gz vyatta-op-ab4371d058f8684fcbc501be34153b0d3b3c36db.zip |
T1596 Remove telnet and traceroute operations after xml-style rewrite
Diffstat (limited to 'templates/telnet')
-rw-r--r-- | templates/telnet/node.def | 1 | ||||
-rw-r--r-- | templates/telnet/node.tag/node.def | 10 | ||||
-rw-r--r-- | templates/telnet/node.tag/node.tag/node.def | 9 |
3 files changed, 0 insertions, 20 deletions
diff --git a/templates/telnet/node.def b/templates/telnet/node.def deleted file mode 100644 index e3ec3e0..0000000 --- a/templates/telnet/node.def +++ /dev/null @@ -1 +0,0 @@ -help: Telnet to a node diff --git a/templates/telnet/node.tag/node.def b/templates/telnet/node.tag/node.def deleted file mode 100644 index 76e9b0a..0000000 --- a/templates/telnet/node.tag/node.def +++ /dev/null @@ -1,10 +0,0 @@ -help: Telnet to host -allowed: echo -n '<hostname> <x.x.x.x> <h:h:h:h:h:h:h:h>' - -run: if [ -x /usr/bin/telnet ] ; then - /usr/bin/$* - elif [ -x /bin/busybox ] ; then - /bin/busybox $* - else - echo telnet not found - fi diff --git a/templates/telnet/node.tag/node.tag/node.def b/templates/telnet/node.tag/node.tag/node.def deleted file mode 100644 index 21b78c4..0000000 --- a/templates/telnet/node.tag/node.tag/node.def +++ /dev/null @@ -1,9 +0,0 @@ -help: Telnet to <address> <port> -allowed: echo -n '<0-65535>' -run: if [ -x /usr/bin/telnet ] ; then - /usr/bin/$* - elif [ -x /bin/busybox ] ; then - /bin/busybox $* - else - echo telnet not found - fi |