forked from saratov/infra
15 lines
272 B
YAML
15 lines
272 B
YAML
|
---
|
||
|
- name: Update pkg cache.
|
||
|
command: pkg update -f
|
||
|
tags: ['skip_ansible_lint']
|
||
|
|
||
|
- name: Ensure nginx is installed.
|
||
|
pkgng:
|
||
|
name: "{{ nginx_package_name }}"
|
||
|
state: present
|
||
|
|
||
|
- name: Create logs directory.
|
||
|
file:
|
||
|
path: /var/log/nginx
|
||
|
state: directory
|