summaryrefslogtreecommitdiffstats
path: root/compass/deploy/remote_excute.exp
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2015-10-26 15:51:30 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2015-10-26 15:51:30 +0000
commit7243b9793ea87c3070a032b69c01d779a7c8cbfd (patch)
tree83010e3673acec7fc9c9839a7136069f127261f2 /compass/deploy/remote_excute.exp
parent6f816a8546224dcce14fd6dddeb0c9252f69a1c7 (diff)
parentde3139313cb7e3087e3328d1b37cdc88510ca5db (diff)
Merge "Remove Compass from genesis."
Diffstat (limited to 'compass/deploy/remote_excute.exp')
-rw-r--r--compass/deploy/remote_excute.exp23
1 files changed, 0 insertions, 23 deletions
diff --git a/compass/deploy/remote_excute.exp b/compass/deploy/remote_excute.exp
deleted file mode 100644
index 9dd112b..0000000
--- a/compass/deploy/remote_excute.exp
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/expect
-
-set command [lindex $argv 0]
-set passwd [lindex $argv 1]
-
-eval spawn "$command"
-set timeout 60
-
-expect {
- -re ".*es.*o.*"
- {
- exp_send "yes\r"
- exp_continue
- }
-
- -re ".*sword:" {
- exp_send "$passwd\r"
-
- }
-
-}
-
-interact