users-formula/users/googleauth.sls

88 lines
2.7 KiB
Plaintext
Raw Normal View History

# vim: sts=2 ts=2 sw=2 et ai
{%- from "users/map.jinja" import users with context %}
2022-06-14 09:54:18 +02:00
{%- if not grains['os_family'] in ['Suse'] %}
users_googleauth-package:
pkg.installed:
- name: {{ users.googleauth_package }}
- require:
- file: {{ users.googleauth_dir }}
users_{{ users.googleauth_dir }}:
file.directory:
- name: {{ users.googleauth_dir }}
- user: root
- group: {{ users.root_group }}
- mode: '0700'
{%- if grains['os_family'] == 'RedHat' and "selinux" in grains and grains.selinux.enabled %}
2022-06-14 09:54:18 +02:00
policycoreutils-package:
pkg.installed:
- pkgs:
- policycoreutils
{%- if grains['osmajorrelease']|int <= 7 %}
- policycoreutils-python
{%- else %}
- policycoreutils-python-utils
{%- endif %}
users_googleauth_selinux_present:
selinux.fcontext_policy_present:
- name: "{{ users.googleauth_dir }}(/.*)?"
- filetype: 'a'
- sel_user: unconfined_u
- sel_type: ssh_home_t
- sel_level: s0
- require:
- pkg: policycoreutils-package
{%- endif %}
{%- for name, user in pillar.get('users', {}).items() if user.absent is not defined or not user.absent %}
{%- if 'google_auth' in user %}
{%- for svc in user['google_auth'] %}
{%- if user.get('google_2fa', True) %}
2022-06-13 11:04:14 +02:00
{%- set repl = '{0} {1} {2} {3} {4}{5}/{6}_{7} {8}'.format(
'auth',
'[success=done new_authtok_reqd=done default=die]',
'pam_google_authenticator.so',
'user=root',
'secret=',
users.googleauth_dir,
'${USER}',
svc,
'echo_verification_code',
) %}
2015-07-01 19:15:31 +03:00
users_googleauth-pam-{{ svc }}-{{ name }}:
file.replace:
- name: /etc/pam.d/{{ svc }}
2022-06-14 09:54:18 +02:00
{%- if grains['os_family'] == 'RedHat' %}
- pattern: '^(auth[ \t]*substack[ \t]*password-auth)'
{%- else %}
2022-06-13 11:04:14 +02:00
- pattern: '^(@include[ \t]*common-auth)'
2022-06-14 09:54:18 +02:00
{%- endif %}
2022-06-13 11:04:14 +02:00
- repl: '{{ repl }}\n\1'
2015-07-01 19:15:31 +03:00
- unless: grep pam_google_authenticator.so /etc/pam.d/{{ svc }}
- backup: .bak
{%- endif %}
{%- endfor %}
{%- endif %}
{%- endfor %}
2022-06-14 09:54:18 +02:00
{%- if grains['os_family'] == 'RedHat' and "selinux" in grains and grains.selinux.enabled %}
2022-06-14 09:54:18 +02:00
users_googleauth_selinux_applied:
selinux.fcontext_policy_applied:
- name: {{ users.googleauth_dir }}
{%- endif %}
sshd:
service.running:
- watch:
- file: /etc/ssh/sshd_config
sshd_config:
file.replace:
- name: /etc/ssh/sshd_config
- pattern: '^(ChallengeResponseAuthentication|KbdInteractiveAuthentication).*'
- repl: '\1 yes'
{%- endif %}