web-logs: Create directories for parsed logs
This commit is contained in:
parent
21484da09c
commit
1aedd1afcc
1 changed files with 19 additions and 4 deletions
|
@ -53,12 +53,27 @@
|
||||||
destination: /var/cache/sync-http-logs
|
destination: /var/cache/sync-http-logs
|
||||||
private_key: /etc/ssh/logsync/id_ed25519
|
private_key: /etc/ssh/logsync/id_ed25519
|
||||||
|
|
||||||
- name: create data directories
|
- name: create cache directory
|
||||||
file:
|
file:
|
||||||
path: "{{ item }}"
|
path: /var/cache/sync-http-logs
|
||||||
state: directory
|
state: directory
|
||||||
mode: 0750
|
mode: 0750
|
||||||
owner: logsync
|
owner: logsync
|
||||||
group: logsync
|
group: logsync
|
||||||
with_items:
|
|
||||||
- /var/cache/sync-http-logs
|
- name: create log directory
|
||||||
|
file:
|
||||||
|
path: /export/web-log
|
||||||
|
state: directory
|
||||||
|
mode: 0750
|
||||||
|
owner: root
|
||||||
|
group: "{{ ansible_wheel }}"
|
||||||
|
|
||||||
|
- name: link data directory
|
||||||
|
file:
|
||||||
|
dest: /srv/web-log
|
||||||
|
src: /export/web-log
|
||||||
|
state: link
|
||||||
|
owner: root
|
||||||
|
group: "{{ ansible_wheel }}"
|
||||||
|
follow: false
|
||||||
|
|
Loading…
Add table
Reference in a new issue