diff options
Diffstat (limited to 'roles')
-rwxr-xr-x | roles/space_server/templates/radius/getusers.sh.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/space_server/templates/radius/getusers.sh.j2 b/roles/space_server/templates/radius/getusers.sh.j2 index e6413d1..25068a8 100755 --- a/roles/space_server/templates/radius/getusers.sh.j2 +++ b/roles/space_server/templates/radius/getusers.sh.j2 @@ -9,7 +9,7 @@ cleanup() { } trap cleanup EXIT SIGINT SIGTERM -curl -s -o "$tmpfile" '{{ radius_passwords.download_url }}' +curl -fs -o "$tmpfile" '{{ radius_passwords.download_url }}' if ! diff -q "$tmpfile" "$outfile" >/dev/null; then install -m0640 "$tmpfile" "$outfile" systemctl restart radiusd.service |