multinode-db1: Add initial upload logic of deprtment filtered user lists.

This commit is contained in:
Magnus Andersson 2024-08-30 15:39:01 +02:00 committed by Micke Nordin
parent 3abec90157
commit aea23bbf86
Signed by untrusted user: Micke
GPG key ID: 0DA0A7A5708FE257

View file

@ -1,5 +1,8 @@
#!/bin/bash #!/bin/bash
<% basedir="statistics:drive-server-coms" -%>
<% cupath="/opt/mariadb/statistics/users/" -%>
<% @custdata.each do |cust,data| -%> <% @custdata.each do |cust,data| -%>
#Customer <%= cust %> has no billing departments. #Customer <%= cust %> has no billing departments.
<% if defined?(data[@environment]["billdomains"]) && data[@environment]["billdomains"] -%> <% if defined?(data[@environment]["billdomains"]) && data[@environment]["billdomains"] -%>
@ -7,6 +10,10 @@ mkdir -p /opt/mariadb/statistics/users/<%= cust %>
chmod '0700' /opt/mariadb/statistics/users/<%= cust %> chmod '0700' /opt/mariadb/statistics/users/<%= cust %>
<% data[@environment]["billdomains"].each do |dom| -%> <% data[@environment]["billdomains"].each do |dom| -%>
/root/tasks/listusersbydep.sh <%= cust %> <%= dom %> > /opt/mariadb/statistics/users/<%= cust %>/users-<%= dom.gsub(/[.]/, '-') %>.json /root/tasks/listusersbydep.sh <%= cust %> <%= dom %> > /opt/mariadb/statistics/users/<%= cust %>/users-<%= dom.gsub(/[.]/, '-') %>.json
if jq . <%= cupath + cust %>/users-<%= dom.gsub(/[.]/, '-') %>.json &>/dev/null
then
timeout 30s rclone copy -c --no-check-certificate --webdav-headers "Host,sunet.drive.sunet.se" --use-cookies <%= cupath + cust %>/users-<%= dom.gsub(/[.]/, '-') %>.json <%= basedir%>/<%= cust %>-<%= @environment%>/
fi
<% end -%> <% end -%>
<% end -%> <% end -%>
<% end -%> <% end -%>