From b1f8621affc0ca8ef297d5a59f572a8607e71ec8 Mon Sep 17 00:00:00 2001 From: Keith Whyte Date: Thu, 21 May 2020 23:13:11 +0200 Subject: [PATCH] Allow passing command to bts ssh --- modules/rhizo_base/templates/rccn-functions.sh.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rhizo_base/templates/rccn-functions.sh.erb b/modules/rhizo_base/templates/rccn-functions.sh.erb index 9ffdd73..ea98ffa 100644 --- a/modules/rhizo_base/templates/rccn-functions.sh.erb +++ b/modules/rhizo_base/templates/rccn-functions.sh.erb @@ -83,7 +83,7 @@ check_trx() { <% @bts.each_with_index do |bts, index| -%> b<%= index %>() { - ssh -o StrictHostKeyChecking=no <%= @bts_user[bts["model"]] %>@<%= bts["ip"] %> + ssh -o StrictHostKeyChecking=no <%= @bts_user[bts["model"]] %>@<%= bts["ip"] %> $* } <% end -%>