From 689c27fef6a3702e9cb916b27dc9e75df3345916 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gardais=20J=C3=A9r=C3=A9my?= Date: Wed, 29 Nov 2017 14:45:38 +0100 Subject: [PATCH] Fix tasks name. --- CHANGELOG.md | 1 + tasks/preferences.yml | 2 +- tasks/repositories.yml | 8 ++++---- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 352af2f..7a54c8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ * Add Stretch-Security repository. * Update README.md with example. * Rename apt_old_* to apt_unwanted_* vars. +* Fix tasks name. ## v1.0.2 diff --git a/tasks/preferences.yml b/tasks/preferences.yml index cf804aa..47250da 100644 --- a/tasks/preferences.yml +++ b/tasks/preferences.yml @@ -2,7 +2,7 @@ # task file for preferences # Default preferences file -- name: CONFIG default preferences +- name: PREF default preferences file template: src: '{{ apt_default_pref_tpl }}' dest: '{{ apt_default_pref_path }}' diff --git a/tasks/repositories.yml b/tasks/repositories.yml index 224094a..57c12f5 100644 --- a/tasks/repositories.yml +++ b/tasks/repositories.yml @@ -3,7 +3,7 @@ # Sources list ## Stretch {{{ -- name: CONFIG stretch official sources.list +- name: REPOS stretch official sources.list apt_repository: repo: "{{ item }} http://httpredir.debian.org/debian/ stretch main contrib non-free" filename: stretch @@ -14,7 +14,7 @@ notify: aptitude update when: apt_src_list_manage and apt_stretch_manage -- name: CONFIG stretch security sources.list +- name: REPOS stretch security sources.list apt_repository: repo: "{{ item }} http://httpredir.debian.org/debian-security/ stretch/updates main contrib non-free" filename: stretch.security @@ -25,7 +25,7 @@ notify: aptitude update when: apt_src_list_manage and apt_stretch_manage -- name: CONFIG stretch backports sources.list +- name: REPOS stretch backports sources.list apt_repository: repo: "deb http://httpredir.debian.org/debian/ stretch-{{ item }} main contrib non-free" filename: stretch.bpo @@ -37,7 +37,7 @@ # }}} ## Purge sources.list file -- name: CONFIG remove sources.list file +- name: REPOS remove sources.list file file: path: /etc/apt/sources.list state: absent