You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
616 B
16 lines
616 B
5 years ago
|
#!/bin/bash -e
|
||
|
|
||
|
while true; do
|
||
|
{% for client in wh_clients %}
|
||
|
{% for app in client.apps %}
|
||
|
if [ -e /opt/wh/{{ client.name }}/apps/{{ app.name }}/tmp/reset -o -e /opt/wh/{{ client.name }}/apps/{{ app.name }}/tmp/reset.txt ]; then
|
||
|
echo Reseting permissions for {{ client.name }} - {{ app.name }}
|
||
|
sh /opt/wh/{{ client.name }}/apps/{{ app.name }}/bin/perms.sh
|
||
|
echo Permissions for {{ client.name }} - {{ app.name }} have been reseted
|
||
|
rm -f /opt/wh/{{ client.name }}/apps/{{ app.name }}/tmp/reset /opt/wh/{{ client.name }}/apps/{{ app.name }}/tmp/reset.txt
|
||
|
fi
|
||
|
{% endfor %}
|
||
|
{% endfor %}
|
||
|
sleep 5
|
||
|
done
|