Skip to content
Snippets Groups Projects
Select Git revision
  • 3f359ec1c2e8ce441201a4b9442cc7f2a640365b
  • master default protected
2 results

configure_local_mounts.yml

Blame
  • configure_local_mounts.yml 194 B
    ---
    - name: Mount tmpfs for non-persistent and fast /tmp directory
      mount:
        boot: "yes"
        fstype: "tmpfs"
        opts: "defaults,size=2G"
        path: "/tmp"
        src: "tmpfs"
        state: mounted