23 lines
656 B
YAML
23 lines
656 B
YAML
# TODO: Enable period trim, this could be via systemctl enable zfs-trim-weekly@zroot.timer and fstrim.timer on linux. Need to find FreeBSD solution.
|
|
- name: Install packages
|
|
package:
|
|
name:
|
|
- nvme-cli
|
|
state: present
|
|
|
|
- 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 }}"
|
|
when: users is defined
|
|
loop: "{{ users | dict2items | community.general.json_query('[?value.initialize==`true`].key') }}"
|
|
loop_control:
|
|
loop_var: initialize_user
|