ajoute un tag "packages" aux taches d'install

This commit is contained in:
Jérémy Lecour 2016-09-29 11:19:27 +02:00 committed by Jérémy Lecour
parent fcbc9b67fc
commit 94915cda7d
4 changed files with 10 additions and 0 deletions

View File

@ -5,3 +5,4 @@
upgrade: "{{ apt_upgrade_mode | default('safe') }}"
tags:
- system
- packages

View File

@ -6,6 +6,7 @@
state: installed
tags:
- monit
- packages
- name: custom config is installed
template:

View File

@ -11,6 +11,7 @@
- munin-plugins-extra
tags:
- munin
- packages
- block:
- name: Replace localdomain in Munin config

View File

@ -3,6 +3,9 @@
apt:
name: redis-server
state: installed
tags:
- redis
- packages
- name: Ensure Redis is configured.
template:
@ -10,9 +13,13 @@
dest: "{{ redis_conf_path }}"
mode: 0644
notify: restart redis
tags:
- redis
- name: Ensure redis is running and enabled on boot.
service:
name: "{{ redis_daemon }}"
enabled: yes
state: started
tags:
- redis