Skip to content

Commit

Permalink
Fix qouting issue in Exoscale decomission guide (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
bastjan authored Apr 12, 2022
1 parent d5e3e49 commit c4574af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/how-tos/exoscale/decommission.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ include::partial$setup_terraform.adoc[]
----
declare -a LB_FQDNS
for id in 1 2; do
LB_FQDNS[$id]=$(terraform state show module.cluster.module.lb.exoscale_domain_record.lb[$(expr $id - 1)] | grep hostname | cut -d'=' -f2 | tr -d ' "\r\n')
LB_FQDNS[$id]=$(terraform state show "module.cluster.module.lb.exoscale_domain_record.lb[$(expr $id - 1)]" | grep hostname | cut -d'=' -f2 | tr -d ' "\r\n')
done
for lb in ${LB_FQDNS[*]}; do
ssh "${lb}" "sudo grep 'server =' /etc/burp/burp.conf && sudo grep 'ParentZone' /etc/icinga2/constants.conf"
Expand Down

0 comments on commit c4574af

Please sign in to comment.