aboutsummaryrefslogtreecommitdiff
path: root/pkgs/yossh/examples/test.lua
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-04-29 15:20:57 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-04-29 15:20:57 -0500
commit9c9a49a855951662da62bcdec45f69ddc0099e5c (patch)
tree1f7852971693d9e49d16a77aff51b87d39940b1b /pkgs/yossh/examples/test.lua
parent21de12cd6e63adf463674942f1a8f9b658f47945 (diff)
changes
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})