Refactoring and vmdb2 improvements
This commit is contained in:
parent
e94c68854d
commit
f61468fff5
28 changed files with 1257 additions and 0 deletions
59
ansible/deploy-butter-site.yml
Normal file
59
ansible/deploy-butter-site.yml
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
---
|
||||
- name: Deploy butter site
|
||||
hosts: all
|
||||
become: true
|
||||
|
||||
tasks:
|
||||
- name: Install unzip
|
||||
apt:
|
||||
name:
|
||||
- unzip
|
||||
state: present
|
||||
update_cache: yes
|
||||
when: not ( is_vmdb2 | bool )
|
||||
|
||||
- name: Ensure /etc/resolv.conf contains nameserver 1.1.1.1
|
||||
copy:
|
||||
dest: /etc/resolv.conf
|
||||
content: "nameserver 1.1.1.1\n"
|
||||
owner: root
|
||||
group: root
|
||||
mode: '0644'
|
||||
when: is_vmdb2 | bool
|
||||
|
||||
- name: Ensure /tmp/butter-site is absent
|
||||
file:
|
||||
path: /tmp/butter-site
|
||||
state: absent
|
||||
|
||||
- name: Ensure /tmp/site.zip is absent
|
||||
file:
|
||||
path: /tmp/site.zip
|
||||
state: absent
|
||||
|
||||
- name: Download the butter-box UI zip file
|
||||
get_url:
|
||||
url: "https://likebutter.gitlab.io/butter-box-ui/site-{{ butter_language }}.zip"
|
||||
dest: /tmp/site.zip
|
||||
mode: '0644'
|
||||
|
||||
- name: Ensure /tmp/butter-site directory exists
|
||||
file:
|
||||
path: /tmp/butter-site
|
||||
state: directory
|
||||
mode: '0755'
|
||||
|
||||
- name: Unarchive site.zip to /tmp/butter-site
|
||||
unarchive:
|
||||
src: /tmp/site.zip
|
||||
dest: /tmp/butter-site
|
||||
remote_src: yes
|
||||
|
||||
- name: Copy contents to /var/www/html/
|
||||
copy:
|
||||
src: /tmp/butter-site/
|
||||
dest: /var/www/html/
|
||||
owner: www-data
|
||||
group: www-data
|
||||
mode: '0755'
|
||||
remote_src: yes
|
||||
Loading…
Add table
Add a link
Reference in a new issue