See if we can get the jobs out

This commit is contained in:
Micke Nordin 2024-06-12 09:47:05 +02:00
parent 097fce5f87
commit 6c8a4f430b

View file

@ -6,6 +6,7 @@ sleep $((16#$(ip a | grep "link/ether" | head -1 | awk -F ':' '{print $6}' | awk
number_of_full_to_keep='<%= @full_backup_retention %>'
fork_limit=30 #in GB, if bigger than this number, we fork the backup to it's own process
customer="<%= @customer %>"
declare -a extra_backup_jobs=()
#<% if @location.start_with?('common') %>
declare -a sixmonths=('mau')
if [[ " ${sixmonths[*]} " =~ " ${customer} " ]]; then
@ -13,6 +14,9 @@ if [[ " ${sixmonths[*]} " =~ " ${customer} " ]]; then
fi
declare -a projects
#<% @singlenodes.each do |singlenode| %>
#<% if @extra_backup_jobs[singlenode] %>
extra_backup_jobs+=("<%= @extra_backup_jobs[singlenode]['script'] %>")
#<% end %>
projects+=("<%= @full_project_mapping[singlenode][@environment]['primary_project'] %> <%= @full_project_mapping[singlenode][@environment]['mirror_project'] %>")
#<% @full_project_mapping[singlenode][@environment]['assigned'].each do |project| %>
projects+=("<%= project['project'] %> <%= project['mirror_project'] %>")