diff options
author | Christian Franke <nobody@nowhere.ws> | 2015-08-29 19:26:22 +0200 |
---|---|---|
committer | Christian Franke <nobody@nowhere.ws> | 2015-08-29 19:26:22 +0200 |
commit | 40354757db45bc519282f410976b20cfc463f184 (patch) | |
tree | 99822eda7d431f78c5f0ae1843658be39152baef /roles/sublab_web | |
parent | 22f38756dd298a4e45149ecc2dbc68d7ed1deb46 (diff) |
Use update-cache instead of running apt-get update manually
Diffstat (limited to 'roles/sublab_web')
-rw-r--r-- | roles/sublab_web/tasks/main.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/sublab_web/tasks/main.yaml b/roles/sublab_web/tasks/main.yaml index 0aab602..7416cba 100644 --- a/roles/sublab_web/tasks/main.yaml +++ b/roles/sublab_web/tasks/main.yaml @@ -1,6 +1,6 @@ --- - name: Install ikiwiki package and dependencies - apt: name={{ item }} state=present + apt: name={{ item }} state=present update_cache=yes with_items: - ikiwiki - perlmagick |