From 1149a58bfded34659c35d8ff039a997278c8f55a Mon Sep 17 00:00:00 2001 From: Keith Whyte Date: Sun, 3 May 2020 03:05:32 +0200 Subject: [PATCH] rename lcX function to bX --- modules/rhizo_base/templates/rccn-functions.sh.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/rhizo_base/templates/rccn-functions.sh.erb b/modules/rhizo_base/templates/rccn-functions.sh.erb index 73df8f1..0515f2c 100644 --- a/modules/rhizo_base/templates/rccn-functions.sh.erb +++ b/modules/rhizo_base/templates/rccn-functions.sh.erb @@ -82,7 +82,7 @@ check_trx() { } <% @bts.each_with_index do |bts, index| -%> -lc<%= index %>() { - ssh root@<%= bts["ip"] %> +b<%= index %>() { + ssh -o StrictHostKeyChecking=no root@<%= bts["ip"] %> } <% end -%>