Markus Katharina Brechtel 4 лет назад
Родитель
Сommit
c216bc7b60
1 измененных файлов: 6 добавлений и 5 удалений
  1. +6
    -5
      tasks/main.yml

+ 6
- 5
tasks/main.yml Просмотреть файл

@@ -1,19 +1,20 @@
---

- name: format
command: mkswap -U {{ item.uuid }} {{ item.device }}
command: mkswap {% if item.uuid is defined %}-U {{ item.uuid }}{% endif %} {{ item.device }}
with_items: "{{ swap_devices }}"
when:
swap_devices_state == "formated"
- swap_devices_state == "formated"
- item.format | default(true)

- name: fstab for swap devices
mount:
name: none
src: UUID={{ item.uuid }}
src: "{% if item.uuid is defined %}UUID={{ item.uuid }}{% else %}{{ item.device }}{% endif %}"
fstype: swap
opts: sw
passno: 0
dump: 0
passno: '0'
dump: '0'
state: present
fstab: "{{ fstab_file }}"
with_items: "{{ swap_devices }}"


Загрузка…
Отмена
Сохранить