Repos with recipes to deploy some infrastructure services
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 rivejä
331 B

  1. ---
  2. - name: Create filesystem
  3. filesystem:
  4. opts: "{{ item.opts | default(omit, true) }}"
  5. force: "{{ item.override | default(false, true) }}"
  6. resizefs: "{{ item.resize | default(true, true) }}"
  7. dev: "{{ item.device }}"
  8. fstype: "{{ item.fstype }}"
  9. with_items: "{{ devices | default([], true) }}"
  10. ...