Documentation

    PLEASE NOTE: This document applies to v1.1 version and not to the latest stable release v2.7

    Documentation for other releases can be found by using the version selector in the left bottom of any doc page.

    file

    Manage files and file properties.

    Parameters

    path:
      type: string
      required: true
      description: Absolute path to the file being managed.
    mode:
      type: string
      description: Permissions of the destination file or directory.
    state:
      type: string
      default: file
      enum:
        - absent
        - directory
        - file
        - touch
    

    Example

    - file:
        path: /work
        state: absent
    
    - file:
        path: /yea
        state: present
        mode: 0644