Commit eb53098a by ansible

no message

1 parent 25390001
Showing with 4 additions and 4 deletions
......@@ -13,22 +13,22 @@
- { device: "/dev/{{ app_disk }}", number: "4", start: "91%", end: "100%" }
- name: "Format disk: \"{{ item.device }}\" using etx4"
filesystem:
filesystem:
dev: "{{ item.device }}"
fstype: ext4
with_items:
with_items:
- { device: "/dev/{{ app_disk }}"1 }
- { device: "/dev/{{ app_disk }}"2 }
- { device: "/dev/{{ app_disk }}"3 }
- { device: "/dev/{{ app_disk }}"4 }
- name: "Mount up \"{{ item.device }}\" to \"{{ item.path }}\""
mount:
mount:
state: mounted
fstype: ext4
src: "{{ item.device }}"
path: "{{ item.path }}"
with_items:
with_items:
- { device: "/dev/{{ app_disk }}"1, path: /opt }
- { device: "/dev/{{ app_disk }}"2, path: /upload }
- { device: "/dev/{{ app_disk }}"3, path: /archive }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!