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.
 
 

15 rivejä
482 B

  1. ---
  2. - name: Mount device
  3. mount:
  4. backup: "{{ mount.backup | default(false, true) }}"
  5. dump: "{{ mount.dump | default(omit, true) }}"
  6. passno: "{{ mount.passno | default(omit, true) }}"
  7. fstab: "{{ mount.fstab | default(omit, true) }}"
  8. opts: "{{ mount.opts | default(omit, true) }}"
  9. boot: "{{ mount.boot | default(true, true) }}"
  10. fstype: "{{ mount.fstype }}"
  11. path: "{{ mount.path }}"
  12. src: "{{ mount.device }}"
  13. state: "mounted"
  14. ...