Browse Source

Clarified parameters are bit in a comment

Justin Plock 11 years ago
parent
commit
c037dce07a
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      roles/common/tasks/google_auth.yml

+ 2
- 2
roles/common/tasks/google_auth.yml View File

34
               insertbefore=BOF
34
               insertbefore=BOF
35
               state=present
35
               state=present
36
 
36
 
37
-- name: Generate QNR code for default user
38
-  command: /usr/local/bin/google-authenticator -t -f -d --label="{{ main_user_name }}@{{ domain }}" --qr-mode=ANSI -r 3 -R 30 -W --secret=/home/{{ main_user_name }}/.google_authenticator
37
+- name: Generate a timed-based, no reuse, rate-limited (3 logins per 30 seconds) with no concurrently valid codes for default user
38
+  command: /usr/local/bin/google-authenticator -t -f -d --label="{{ main_user_name }}@{{ domain }}" --qr-mode=NONE -r 3 -R 30 -W --secret=/home/{{ main_user_name }}/.google_authenticator
39
            creates=/home/{{ main_user_name }}/.google_authenticator
39
            creates=/home/{{ main_user_name }}/.google_authenticator
40
 
40
 
41
 - name: Fix permissions on generated file
41
 - name: Fix permissions on generated file

Loading…
Cancel
Save