Skip to content

Latest commit

 

History

History
131 lines (100 loc) · 3.46 KB

ansible.windows.win_owner_module.rst

File metadata and controls

131 lines (100 loc) · 3.46 KB

ansible.windows.win_owner

Set owner

  • Set owner of files or directories.
Parameter Choices/Defaults Comments
path
path / required
Path to be used for changing owner.
recurse
boolean
    Choices:
  • no ←
  • yes
Indicates if the owner should be changed recursively.
user
string / required
Name to be used for changing owner.

.. seealso::

   :ref:`ansible.windows.win_acl_module`
      The official documentation on the **ansible.windows.win_acl** module.
   :ref:`ansible.windows.win_file_module`
      The official documentation on the **ansible.windows.win_file** module.
   :ref:`ansible.windows.win_stat_module`
      The official documentation on the **ansible.windows.win_stat** module.


- name: Change owner of path
  ansible.windows.win_owner:
    path: C:\apache
    user: apache
    recurse: yes

- name: Set the owner of root directory
  ansible.windows.win_owner:
    path: C:\apache
    user: SYSTEM
    recurse: no

Authors

  • Hans-Joachim Kliemeck (@h0nIg)