1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Update html.yml

This commit is contained in:
A Holt 2018-08-21 07:48:44 -04:00 committed by GitHub
parent 7fe2fa694a
commit 363ffad15c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
- name: Copy css files
- name: Copy css files to /library/www/html/common/css
copy:
src: "{{ item }}"
dest: "{{ doc_root }}/common/css"
@ -8,7 +8,7 @@
with_fileglob:
- html/css/*.css
- name: Copy js files
- name: Copy js files to /library/www/html/common/js
copy:
src: "{{ item }}"
dest: "{{ doc_root }}/common/js"
@ -18,7 +18,7 @@
with_fileglob:
- html/js/*.js
- name: Copy fonts files
- name: Copy fonts files to /library/www/html/common/fonts
copy:
src: "{{ item }}"
dest: "{{ doc_root }}/common/fonts"
@ -28,7 +28,7 @@
with_fileglob:
- html/fonts/*
- name: Copy html files
- name: Copy html files to /library/www/html/common/html
copy:
src: "{{ item }}"
dest: "{{ doc_root }}/common/html"
@ -38,7 +38,7 @@
with_fileglob:
- html/html/*
- name: Copy assets files
- name: Copy assets files to /library/www/html/common/assets
copy:
src: "{{ item }}"
dest: "{{ doc_root }}/common/assets"
@ -49,7 +49,7 @@
- html/assets/*
# copy all services, even if not permissioned elsewhere
- name: Copy services files
- name: Copy services files to /library/www/html/common/services
copy:
src: "{{ item }}"
dest: "{{ doc_root }}/common/services"
@ -59,7 +59,7 @@
with_fileglob:
- html/services/*
- name: Create symlink from assets to iiab.ini
- name: Create symlink from assets to /etc/iiab/iiab.ini
file:
src: "/etc/iiab/iiab.ini"
dest: "{{ doc_root }}/common/assets/iiab.ini"