ansible-nginx/tasks/install.yml

14 lines
358 B
YAML
Raw Permalink Normal View History

2016-01-12 00:20:42 +07:00
---
- name: APT | Install nginx and dependencies
apt: >
pkg={{ nginx_apt_package }}
state=present
update_cache=yes
cache_valid_time=3600
default_release={{ ansible_distribution_release + '-backports' if nginx_backports else ansible_distribution_release }}
- name: APT | Install python-passlib
apt: pkg=python-passlib state=present