aboutsummaryrefslogtreecommitdiff
path: root/pkgs/yossh/examples/test.lua
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/yossh/examples/test.lua')
-rw-r--r--pkgs/yossh/examples/test.lua18
1 files changed, 0 insertions, 18 deletions
diff --git a/pkgs/yossh/examples/test.lua b/pkgs/yossh/examples/test.lua
deleted file mode 100644
index a594305..0000000
--- a/pkgs/yossh/examples/test.lua
+++ /dev/null
@@ -1,18 +0,0 @@
-yoshi = dofile'yoshi.lua'
-
-yoshi.hosts["you"] = function()
- return yoshi.ssh{
- HostName = "192.168.50.2",
- DynamicForward = 7320,
- Port = 27
- }
-end
-
-yoshi.hosts["me"] = function()
- return yoshi.ssh{
- HostName = "test.local",
- ProxyJump = "jumper@you"
- }
-end
-
-yoshi.run(arg, {dry_run = true})