13 lines
315 B
YAML
13 lines
315 B
YAML
|
---
|
||
|
- 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
|