ansible-nginx/tests/includes/pre_Debian.yml

48 lines
1.5 KiB
YAML
Raw Normal View History

---
- name: APT_REPOSITORY | Install backports
apt_repository: repo='deb http://httpredir.debian.org/debian {{ ansible_distribution_release }}-backports main' state=present
- block:
- name: APT | Install DotDeb key
apt_key: url='http://www.dotdeb.org/dotdeb.gpg' state=present
2016-10-13 15:19:24 +07:00
- name: APT_REPOSITORY | Install dotdeb (PHP 7)
apt_repository: repo='deb http://packages.dotdeb.org {{ ansible_distribution_release }} all' state=present
- name: LINEFILEFILE | Dotdeb priority (prevent install nginx from dotdeb)
copy: >
content="Package: *\nPin: release o=packages.dotdeb.org\nPin-Priority: 100"
dest=/etc/apt/preferences
2016-10-13 15:19:24 +07:00
when: ansible_distribution_release == 'jessie' and dotdeb
- name: APT | Install needed packages
apt: pkg={{ item }} update_cache=yes cache_valid_time=3600 state=present
with_items:
- curl
- fcgiwrap
2016-08-11 15:48:12 +07:00
- nghttp2
2016-10-13 15:19:24 +07:00
- strace
- vim
- name: APT | Install PHP5.6
apt: pkg={{ item }} update_cache=yes cache_valid_time=3600 state=present
with_items:
2016-08-11 15:48:12 +07:00
- php5-fpm
2016-08-11 16:30:26 +07:00
- php5-sqlite
2016-10-13 15:19:24 +07:00
when: nginx_php56
- name: APT | Install PHP7
apt: pkg={{ item }} update_cache=yes cache_valid_time=3600 state=present
with_items:
2016-08-11 15:48:12 +07:00
- php7.0-fpm
2016-08-11 16:30:26 +07:00
- php7.0-sqlite3
2016-10-13 15:19:24 +07:00
when: nginx_php70
- name: SERVICE | Force start services
2016-10-13 15:19:24 +07:00
service: name={{ item.name }} state=started
register: sf
with_items:
2016-10-13 15:19:24 +07:00
- { name: 'php5-fpm', cond: "{{ nginx_php56 }}" }
- { name: 'php7.0-fpm', cond: "{{ nginx_php70 }}" }
- { name: 'fcgiwrap', cond: true }
when: "{{ item.cond }}"