diff options
author | Emil Renner Berthing <esmil@labitat.dk> | 2018-10-27 22:41:40 +0200 |
---|---|---|
committer | Emil Renner Berthing <esmil@labitat.dk> | 2018-10-27 22:44:14 +0200 |
commit | 2441baf2870a296ccd77b5e903ffa450a0418b9b (patch) | |
tree | 8824dc069009bae3484d70652031c2525c363169 /roles/space_server/templates | |
parent | 060a041a7bf07960877099081554065bba155b4e (diff) | |
download | labitat-ansible-2441baf2870a296ccd77b5e903ffa450a0418b9b.tar.gz labitat-ansible-2441baf2870a296ccd77b5e903ffa450a0418b9b.tar.xz labitat-ansible-2441baf2870a296ccd77b5e903ffa450a0418b9b.zip |
space_server: radius: use python for ASSHA auth
..rather than our own patched radiusd
Diffstat (limited to 'roles/space_server/templates')
-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 25068a8..b7e6659 100755 --- a/roles/space_server/templates/radius/getusers.sh.j2 +++ b/roles/space_server/templates/radius/getusers.sh.j2 @@ -12,5 +12,5 @@ trap cleanup EXIT SIGINT SIGTERM curl -fs -o "$tmpfile" '{{ radius_passwords.download_url }}' if ! diff -q "$tmpfile" "$outfile" >/dev/null; then install -m0640 "$tmpfile" "$outfile" - systemctl restart radiusd.service + #systemctl restart radiusd.service fi |