ansible_public/playbooks/fast_fixes/chown_studet_base.yaml

13 lines
315 B
YAML
Raw Normal View History

2022-06-14 18:53:16 +02:00
---
- hosts: "{{ variable_host | default('lab15_standard') }}"
gather_facts: no
become: yes
connection: local
tasks:
- name: Chown student base to student student
file:
path: /export/home/student.base
owner: student
group: student
state: directory
recurse: yes