diff options
author | Kevin Fenzi <kevin@scrye.com> | 2013-06-13 20:59:44 +0000 |
---|---|---|
committer | Kevin Fenzi <kevin@scrye.com> | 2013-06-13 20:59:44 +0000 |
commit | 88bd64bf0a6525db5998126377635176a2cf38cc (patch) | |
tree | ff7deefcce4aca1d4411d5e33ef1486602bfd262 | |
parent | 1a2a3f685848bcdf33c9cb2e91a3742918f4b63c (diff) | |
download | ansible-88bd64bf0a6525db5998126377635176a2cf38cc.tar.gz ansible-88bd64bf0a6525db5998126377635176a2cf38cc.tar.xz ansible-88bd64bf0a6525db5998126377635176a2cf38cc.zip |
Fix this case to be acutally, you know, right.
-rw-r--r-- | files/2fa/pam_url.conf.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/2fa/pam_url.conf.j2 b/files/2fa/pam_url.conf.j2 index 73cb9c653..6dcf99cba 100644 --- a/files/2fa/pam_url.conf.j2 +++ b/files/2fa/pam_url.conf.j2 @@ -3,9 +3,9 @@ pam_url: settings: { {% if env == 'staging' %} - url = "https://fas-all.phx2.fedoraproject.org:8443/"; # URI to fetch - {% elif datacenter == 'phx2' %} url = "https://fas-all.stg.phx2.fedoraproject.org:8443/"; # URI to fetch + {% elif datacenter == 'phx2' %} + url = "https://fas-all.phx2.fedoraproject.org:8443/"; # URI to fetch {% else %} url = "https://fas-all.vpn.fedoraproject.org:8443/"; # URI to fetch {% endif %} |