Revert "Only update packages indexes if the cache is 1 hour old"
This reverts commit 201165cff6
.
Turns out this actually breaks initial deployments, because the
cache gets updated in the first task, then you add sources for
nginx and mariadb, but it doesn't update the indexes because the
cache is < 3600 seconds old, so you end up getting the distro's
versions of nginx and mariadb.
This commit is contained in:
parent
da6d1e05b9
commit
8851f8f631
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
- name: Install firewalld and deps
|
- name: Install firewalld and deps
|
||||||
when: ansible_distribution_major_version == '8'
|
when: ansible_distribution_major_version == '8'
|
||||||
apt: pkg={{ item }} state=latest update_cache=yes cache_valid_time=3600
|
apt: pkg={{ item }} state=latest
|
||||||
with_items:
|
with_items:
|
||||||
- firewalld
|
- firewalld
|
||||||
- tidy
|
- tidy
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
- name: Install iptables-persistent
|
- name: Install iptables-persistent
|
||||||
when: ansible_distribution_version == '14.04'
|
when: ansible_distribution_version == '14.04'
|
||||||
apt: pkg=iptables-persistent update_cache=yes cache_valid_time=3600
|
apt: pkg=iptables-persistent update_cache=yes
|
||||||
tags: packages
|
tags: packages
|
||||||
|
|
||||||
- name: Copy /etc/iptables/rules.v4
|
- name: Copy /etc/iptables/rules.v4
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
template: src=sources.list.j2 dest=/etc/apt/sources.list owner=root group=root mode=0644
|
template: src=sources.list.j2 dest=/etc/apt/sources.list owner=root group=root mode=0644
|
||||||
|
|
||||||
- name: Install base packages
|
- name: Install base packages
|
||||||
apt: name={{ item }} update_cache=yes cache_valid_time=3600
|
apt: name={{ item }} update_cache=yes
|
||||||
with_items:
|
with_items:
|
||||||
- git
|
- git
|
||||||
- tmux
|
- tmux
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
when: ansible_distribution_version == '14.04'
|
when: ansible_distribution_version == '14.04'
|
||||||
|
|
||||||
- name: Upgrade base OS
|
- name: Upgrade base OS
|
||||||
apt: upgrade=dist update_cache=yes cache_valid_time=3600
|
apt: upgrade=dist update_cache=yes
|
||||||
|
|
||||||
- name: Install base packages
|
- name: Install base packages
|
||||||
apt: pkg={{ item }}
|
apt: pkg={{ item }}
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
tags: mariadb, packages
|
tags: mariadb, packages
|
||||||
|
|
||||||
- name: Install mariadb-server
|
- name: Install mariadb-server
|
||||||
apt: name={{ item }} state=present update_cache=yes cache_valid_time=3600
|
apt: name={{ item }} state=present update_cache=yes
|
||||||
with_items:
|
with_items:
|
||||||
- mariadb-server
|
- mariadb-server
|
||||||
- python-mysqldb # for ansible
|
- python-mysqldb # for ansible
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
tags: nginx, packages
|
tags: nginx, packages
|
||||||
|
|
||||||
- name: Install nginx
|
- name: Install nginx
|
||||||
apt: pkg=nginx update_cache=yes state=latest cache_valid_time=3600
|
apt: pkg=nginx update_cache=yes state=latest
|
||||||
tags: nginx, packages
|
tags: nginx, packages
|
||||||
|
|
||||||
- name: Copy nginx configs
|
- name: Copy nginx configs
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
- name: Install php5-fpm and deps
|
- name: Install php5-fpm and deps
|
||||||
apt: name={{ item }} state=present update_cache=yes cache_valid_time=3600
|
apt: name={{ item }} state=present update_cache=yes
|
||||||
with_items:
|
with_items:
|
||||||
- php5-fpm
|
- php5-fpm
|
||||||
# for WordPress
|
# for WordPress
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
- name: Install php7.0-fpm and deps
|
- name: Install php7.0-fpm and deps
|
||||||
apt: name={{ item }} state=present update_cache=yes cache_valid_time=3600
|
apt: name={{ item }} state=present update_cache=yes
|
||||||
with_items:
|
with_items:
|
||||||
- php7.0-fpm
|
- php7.0-fpm
|
||||||
# for WordPress
|
# for WordPress
|
||||||
|
Loading…
Reference in New Issue
Block a user