mirror of
https://github.com/ThunixdotNet/ansible.git
synced 2026-06-20 00:49:27 +00:00
9 lines
236 B
YAML
9 lines
236 B
YAML
# This will add script to run google-authenticator for users to set up 2FA
|
|
---
|
|
- name: Set 2FA
|
|
copy:
|
|
src: ../files/usr/local/bin/setup-2factor
|
|
dest: /usr/local/bin/setup-2factor
|
|
owner: root
|
|
group: root
|
|
mode: 0755 |