25 lines
1 KiB
Plaintext
25 lines
1 KiB
Plaintext
#!/bin/bash
|
|
|
|
<% basedir="statistics:drive-server-coms" -%>
|
|
<% cupath="/opt/mariadb/statistics/users/" -%>
|
|
status=0
|
|
|
|
<% @custdata.each do |cust,data| -%>
|
|
#Customer <%= cust %> has no billing departments.
|
|
<% if defined?(data[@environment]["billdomains"]) && data[@environment]["billdomains"] -%>
|
|
mkdir -p /opt/mariadb/statistics/users/<%= cust %>
|
|
chmod '0700' /opt/mariadb/statistics/users/<%= cust %>
|
|
<% data[@environment]["billdomains"].each do |dom| -%>
|
|
/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%>/
|
|
[[ $? -eq 0 ]] || { status=1 ; echo "Error: Upload of user data failed." ; }
|
|
else
|
|
echo "Error in json data"
|
|
status=1
|
|
fi
|
|
<% end -%>
|
|
<% end -%>
|
|
<% end -%>
|