1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 11:42:08 +00:00

indentation/syntax per new Ansible documentation

This commit is contained in:
A Holt 2018-02-06 19:11:13 -05:00 committed by GitHub
parent 5211bf3c23
commit 2b97c8cab3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,61 +1,68 @@
- name: Copy css files
copy: src={{ item }}
dest={{ doc_root }}/common/css
mode=0644
owner=root
group=root
copy:
src: "{{ item }}"
dest: "{{ doc_root }}/common/css"
mode: 0644
owner: root
group: root
with_fileglob:
- html/css/*.css
- html/css/*.css
- name: Copy js files
copy: src={{ item }}
dest={{ doc_root }}/common/js
mode=0644
owner=root
group=root
copy:
src: "{{ item }}"
dest: "{{ doc_root }}/common/js"
mode: 0644
owner: root
group: root
with_fileglob:
- html/js/*.js
- html/js/*.js
- name: Copy fonts files
copy: src={{ item }}
dest={{ doc_root }}/common/fonts
mode=0644
owner=root
group=root
copy:
src: "{{ item }}"
dest: "{{ doc_root }}/common/fonts"
mode: 0644
owner: root
group: root
with_fileglob:
- html/fonts/*
- html/fonts/*
- name: Copy html files
copy: src={{ item }}
dest={{ doc_root }}/common/html
mode=0644
owner=root
group=root
copy:
src: "{{ item }}"
dest: "{{ doc_root }}/common/html"
mode: 0644
owner: root
group: root
with_fileglob:
- html/html/*
- html/html/*
- name: Copy assets files
copy: src={{ item }}
dest={{ doc_root }}/common/assets
mode=0644
owner=root
group=root
copy:
src: "{{ item }}"
dest: "{{ doc_root }}/common/assets"
mode: 0644
owner: root
group: root
with_fileglob:
- html/assets/*
- html/assets/*
# copy all services, even if not permissioned elsewhere
- name: Copy services files
copy: src={{ item }}
dest={{ doc_root }}/common/services
mode=0644
owner=root
group=root
copy:
src: "{{ item }}"
dest: "{{ doc_root }}/common/services"
mode: 0644
owner: root
group: root
with_fileglob:
- html/services/*
- html/services/*
- name: Create symlink from assets to iiab.ini
file: src=/etc/iiab/iiab.ini
dest={{ doc_root }}/common/assets/iiab.ini
owner=root
group=root
state=link
file:
src: "/etc/iiab/iiab.ini"
dest: "{{ doc_root }}/common/assets/iiab.ini"
owner: root
group: root
state: link