13 lines
523 B
Plaintext
13 lines
523 B
Plaintext
#!/bin/bash
|
|
|
|
<% @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
|
|
<% end -%>
|
|
<% end -%>
|
|
<% end -%>
|