diff options
author | Kevin Fenzi <kevin@scrye.com> | 2015-03-24 11:36:44 +0000 |
---|---|---|
committer | Kevin Fenzi <kevin@scrye.com> | 2015-03-24 11:36:44 +0000 |
commit | 40f884a7df348f5f80ded1c4c6dce8f38d40d29f (patch) | |
tree | aea9b9e4b07c95cc7bab1e92a27f76164c7a9835 | |
parent | fa3f509884a98538f369e37ad4bb8ed44d47d0c7 (diff) | |
download | ansible-40f884a7df348f5f80ded1c4c6dce8f38d40d29f.tar.gz ansible-40f884a7df348f5f80ded1c4c6dce8f38d40d29f.tar.xz ansible-40f884a7df348f5f80ded1c4c6dce8f38d40d29f.zip |
Need also 2fa and motd
-rw-r--r-- | playbooks/groups/buildhw.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/playbooks/groups/buildhw.yml b/playbooks/groups/buildhw.yml index 56e08d9d6..e7f2ca51c 100644 --- a/playbooks/groups/buildhw.yml +++ b/playbooks/groups/buildhw.yml @@ -22,6 +22,10 @@ - { role: sudo, when: inventory_hostname.startswith('aarch64') } tasks: + - include: "{{ tasks }}/2fa_client.yml" + when: inventory_hostname.startswith('aarch64') + - include: "{{ tasks }}/motd.yml" + when: inventory_hostname.startswith('aarch64') - include: "{{ tasks }}/yumrepos.yml" handlers: |