1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +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 - name: Copy css files
copy: src={{ item }} copy:
dest={{ doc_root }}/common/css src: "{{ item }}"
mode=0644 dest: "{{ doc_root }}/common/css"
owner=root mode: 0644
group=root owner: root
group: root
with_fileglob: with_fileglob:
- html/css/*.css - html/css/*.css
- name: Copy js files - name: Copy js files
copy: src={{ item }} copy:
dest={{ doc_root }}/common/js src: "{{ item }}"
mode=0644 dest: "{{ doc_root }}/common/js"
owner=root mode: 0644
group=root owner: root
group: root
with_fileglob: with_fileglob:
- html/js/*.js - html/js/*.js
- name: Copy fonts files - name: Copy fonts files
copy: src={{ item }} copy:
dest={{ doc_root }}/common/fonts src: "{{ item }}"
mode=0644 dest: "{{ doc_root }}/common/fonts"
owner=root mode: 0644
group=root owner: root
group: root
with_fileglob: with_fileglob:
- html/fonts/* - html/fonts/*
- name: Copy html files - name: Copy html files
copy: src={{ item }} copy:
dest={{ doc_root }}/common/html src: "{{ item }}"
mode=0644 dest: "{{ doc_root }}/common/html"
owner=root mode: 0644
group=root owner: root
group: root
with_fileglob: with_fileglob:
- html/html/* - html/html/*
- name: Copy assets files - name: Copy assets files
copy: src={{ item }} copy:
dest={{ doc_root }}/common/assets src: "{{ item }}"
mode=0644 dest: "{{ doc_root }}/common/assets"
owner=root mode: 0644
group=root owner: root
group: root
with_fileglob: with_fileglob:
- html/assets/* - html/assets/*
# copy all services, even if not permissioned elsewhere # copy all services, even if not permissioned elsewhere
- name: Copy services files - name: Copy services files
copy: src={{ item }} copy:
dest={{ doc_root }}/common/services src: "{{ item }}"
mode=0644 dest: "{{ doc_root }}/common/services"
owner=root mode: 0644
group=root owner: root
group: root
with_fileglob: with_fileglob:
- html/services/* - html/services/*
- name: Create symlink from assets to iiab.ini - name: Create symlink from assets to iiab.ini
file: src=/etc/iiab/iiab.ini file:
dest={{ doc_root }}/common/assets/iiab.ini src: "/etc/iiab/iiab.ini"
owner=root dest: "{{ doc_root }}/common/assets/iiab.ini"
group=root owner: root
state=link group: root
state: link