瀏覽代碼

fixes

master
父節點
當前提交
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 }}"


Loading…
取消
儲存