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') }}" upgrade: "{{ apt_upgrade_mode | default('safe') }}"
tags: tags:
- system - system
- packages

View file

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

View file

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

View file

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