From 9ec3fb07ec2ea8cc0a4bcce98d7af917d6809c52 Mon Sep 17 00:00:00 2001 From: Alexander Grothe Date: Fri, 3 Aug 2018 12:07:33 +0200 Subject: [PATCH] Don't update cache when adding ppas, this is done in the next step --- Manual.org | 3 ++- roles/yavdr-common/tasks/configure_apt.yml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Manual.org b/Manual.org index e7a1ce2..b0f2d21 100644 --- a/Manual.org +++ b/Manual.org @@ -449,7 +449,7 @@ yavdr-common executes the following tasks: apt_repository: repo: '{{ item }}' state: present - update_cache: yes + update_cache: no with_items: '{{ repositories }}' tags: - ppa @@ -475,6 +475,7 @@ yavdr-common executes the following tasks: question: dash/sh value: 'false' vtype: select + #+END_SRC ***** create user vdr diff --git a/roles/yavdr-common/tasks/configure_apt.yml b/roles/yavdr-common/tasks/configure_apt.yml index bb9a5be..164166b 100644 --- a/roles/yavdr-common/tasks/configure_apt.yml +++ b/roles/yavdr-common/tasks/configure_apt.yml @@ -8,7 +8,7 @@ apt_repository: repo: '{{ item }}' state: present - update_cache: yes + update_cache: no with_items: '{{ repositories }}' tags: - ppa