improve warehost-api role
This commit is contained in:
parent
ef3b9a5af3
commit
ff28b2215f
|
@ -8,5 +8,5 @@
|
|||
- name: reload caddy
|
||||
service: name=caddy state=reloaded
|
||||
|
||||
- name: restart warehost
|
||||
service: name=warehost state=restarted
|
||||
- name: restart warehost-api
|
||||
service: name=warehost-api state=restarted
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
---
|
||||
dependencies:
|
||||
- warehost-meta
|
||||
- warehost-db
|
||||
|
|
|
@ -1,28 +1,19 @@
|
|||
---
|
||||
- name: Create users
|
||||
user: name=warehost createhome=no
|
||||
|
||||
- name: Download Warehost (TODO current copy)
|
||||
copy: src=warehost dest=/usr/local/bin/warehost owner=root group=root mode=0755
|
||||
|
||||
- name: Create config folder
|
||||
file: path=/etc/warehost state=directory owner=warehost mode=0700
|
||||
|
||||
- name: Create log folder
|
||||
file: path=/var/log/warehost state=directory owner=warehost mode=0700
|
||||
copy: src=warehost dest=/usr/local/bin/warehost-api owner=root group=root mode=0755
|
||||
|
||||
- name: Configurate warehost
|
||||
template: src=config.yml dest=/etc/warehost/api.conf owner=warehost mode=0600
|
||||
notify: restart warehost
|
||||
notify: restart warehost-api
|
||||
|
||||
- name: Install service
|
||||
template: src=warehost.unit dest=/lib/systemd/system/warehost.service owner=root mode=644
|
||||
template: src=warehost-api.unit dest=/lib/systemd/system/warehost-api.service owner=root mode=644
|
||||
notify:
|
||||
- reload daemon-reload
|
||||
- restart warehost
|
||||
- restart warehost-api
|
||||
|
||||
- name: Enable warehost
|
||||
service: name=warehost state=started enabled=yes
|
||||
service: name=warehost-api state=started enabled=yes
|
||||
|
||||
|
||||
- name: Configurate per nginx
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[Unit]
|
||||
Description=Warehost v2
|
||||
Description=Warehost api v2
|
||||
After=syslog.target
|
||||
After=network.target
|
||||
After=postgresql.service
|
||||
|
@ -14,7 +14,7 @@ After=postgresql.service
|
|||
Type=simple
|
||||
User=warehost
|
||||
Group=nobody
|
||||
ExecStart=/usr/local/bin/warehost -c /etc/warehost/api.conf
|
||||
ExecStart=/usr/local/bin/warehost-api -c /etc/warehost/api.conf
|
||||
Restart=always
|
||||
|
||||
[Install]
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
- name: Create users
|
||||
user: name=warehost createhome=no
|
||||
- name: Create config folder
|
||||
file: path=/etc/warehost state=directory owner=warehost mode=0700
|
||||
|
||||
- name: Create log folder
|
||||
file: path=/var/log/warehost state=directory owner=warehost mode=0700
|
Reference in New Issue