Removes cron installation from tests

This commit is contained in:
root 2017-09-06 23:47:34 +02:00
parent 94a2cf87a3
commit fda38780e9
2 changed files with 0 additions and 29 deletions

View File

@ -4,20 +4,6 @@
vars: vars:
certbot_install_from_source: yes certbot_install_from_source: yes
pre_tasks:
- name: Update apt cache.
apt: update_cache=yes cache_valid_time=600
when: ansible_os_family == 'Debian'
changed_when: false
- name: Install cron (RedHat).
yum: name=cronie state=present
when: ansible_os_family == 'RedHat'
- name: Install cron (Debian).
apt: name=cron state=present
when: ansible_os_family == 'Debian'
roles: roles:
- geerlingguy.git - geerlingguy.git
- role_under_test - role_under_test

View File

@ -1,19 +1,4 @@
--- ---
- hosts: all - hosts: all
pre_tasks:
- name: Update apt cache.
apt: update_cache=yes cache_valid_time=600
when: ansible_os_family == 'Debian'
changed_when: false
- name: Install cron (RedHat).
yum: name=cronie state=present
when: ansible_os_family == 'RedHat'
- name: Install cron (Debian).
apt: name=cron state=present
when: ansible_os_family == 'Debian'
roles: roles:
- role_under_test - role_under_test