summaryrefslogtreecommitdiff
path: root/yarns/ssh_runcmd
diff options
context:
space:
mode:
Diffstat (limited to 'yarns/ssh_runcmd')
-rwxr-xr-xyarns/ssh_runcmd12
1 files changed, 0 insertions, 12 deletions
diff --git a/yarns/ssh_runcmd b/yarns/ssh_runcmd
deleted file mode 100755
index 261b7e9..0000000
--- a/yarns/ssh_runcmd
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/python2
-
-import sys
-
-import cliapp
-
-cliapp.ssh_runcmd(
- sys.argv[1],
- ['sh', '-c'] + sys.argv[3:],
- remote_cwd=sys.argv[2],
- stdout=None,
- stderr=None)