Commit 9901c1f7 by Kevin Falcone

Chunk this so we get /edx/etc/app.yml only

Before we would get /edx/etc/app and /edx/etc/app.yml
and it doesn't seem worth moving those around.
parent 5db207c6
...@@ -59,16 +59,24 @@ ...@@ -59,16 +59,24 @@
- install - install
- install:base - install:base
- name: Create /edx/var and /edx/etc dirs - name: Create /edx/var/app dir
file: file:
path: "{{ item }}/{{ edx_service_name }}" path: "/edx/var/{{ edx_service_name }}"
state: directory
owner: "{{ edx_service_user }}"
group: "{{ common_web_group }}"
mode: "0755"
tags:
- install
- install:base
- name: Create /edx/etc dir
file:
path: "/edx/etc"
state: directory state: directory
owner: "{{ edx_service_user }}" owner: "{{ edx_service_user }}"
group: "{{ common_web_group }}" group: "{{ common_web_group }}"
mode: "0755" mode: "0755"
with_items:
- "/edx/var"
- "/edx/etc"
tags: tags:
- install - install
- install:base - install:base
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment