machine_setup/ansible/roles/nvme/tasks/common.yaml

23 lines
656 B
YAML
Raw Normal View History

2023-01-28 06:20:42 +00:00
# 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
2023-01-24 05:08:00 +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 }}"
when: users is defined
loop: "{{ users | dict2items | community.general.json_query('[?value.initialize==`true`].key') }}"
loop_control:
loop_var: initialize_user