blob: e2d5011c972407bb85dc22eb5990cf85a8787971 [file] [log] [blame]
Luca Prete8d4e8bc2016-08-24 14:49:54 -07001---
2#
3# Adds distributed tutorial specific configurations
4#
5- name: Cloning byon app repo
6 git:
7 repo: "{{ tutorials.distributed.byon_app_repo_url }}"
8 dest: "/home/{{ tutorials.distributed.user }}/onos-byon"
Eric Tangbec14852018-05-10 22:55:58 +08009 # Check out master version
10 # version: "{{ tutorials.distributed.byon_app_version }}"
11
12- name: Setting byon app directory permissions
13 file:
14 path: "/home/{{ tutorials.distributed.user }}/onos-byon"
15 state: directory
16 mode: 0777
17 owner: "{{ tutorials.distributed.user }}"
18 group: "{{ tutorials.distributed.user }}"
19 recurse: yes