feat: add oolatoocs to masto1
This commit is contained in:
32
roles/webapps/tasks/oolatoocs.yml
Normal file
32
roles/webapps/tasks/oolatoocs.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
|
||||
- name: Create the directory for oolatoocs
|
||||
ansible.builtin.file:
|
||||
name: "{{ webapps_oolatoocs_db_dir }}"
|
||||
state: directory
|
||||
owner: www-data
|
||||
group: www-data
|
||||
mode: 0755
|
||||
|
||||
- name: Download oolatoocs exec
|
||||
ansible.builtin.get_url:
|
||||
url: "{{ webapps_oolatoocs_url }}.{{ webapps_oolatoocs_version }}"
|
||||
dest: "{{ webapps_oolatoocs_local_bin_path }}"
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0755
|
||||
|
||||
- name: Put conf file
|
||||
ansible.builtin.template:
|
||||
src: oolatoocs.toml.j2
|
||||
dest: /usr/local/etc/oolatoocs.toml
|
||||
owner: www-data
|
||||
group: www-data
|
||||
mode: 0640
|
||||
|
||||
- name: Cron for oolatoocs
|
||||
ansible.builtin.cron:
|
||||
name: Oolatoocs
|
||||
user: www-data
|
||||
minute: "*/5"
|
||||
job: "{{ webapps_oolatoocs_local_bin_path }}"
|
Reference in New Issue
Block a user