2023-03-01 15:30:54 +00:00
|
|
|
- name: Install packages
|
|
|
|
package:
|
|
|
|
name:
|
|
|
|
- aspell
|
|
|
|
state: present
|
|
|
|
|
2022-10-20 02:52:45 +00:00
|
|
|
- import_tasks: tasks/freebsd.yaml
|
|
|
|
when: 'os_flavor == "freebsd"'
|
|
|
|
|
|
|
|
- import_tasks: tasks/linux.yaml
|
|
|
|
when: 'os_flavor == "linux"'
|
|
|
|
|
|
|
|
- include_tasks:
|
|
|
|
file: tasks/peruser.yaml
|
|
|
|
apply:
|
|
|
|
become: yes
|
|
|
|
become_user: "{{ initialize_user }}"
|
|
|
|
loop: "{{ users | dict2items | community.general.json_query('[?value.initialize==`true`].key') }}"
|
|
|
|
loop_control:
|
|
|
|
loop_var: initialize_user
|