From 264a2f2252e2a75e908a3a6f1bd2c3c3e75b3f69 Mon Sep 17 00:00:00 2001 From: Alexander Grothe Date: Sun, 30 Jul 2017 14:54:43 +0200 Subject: [PATCH] Minor changes, update task and variable descriptions --- Manual.org | 6 +++--- group_vars/all | 2 +- roles/yavdr-common/tasks/main.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Manual.org b/Manual.org index 84b56c9..13a88a5 100644 --- a/Manual.org +++ b/Manual.org @@ -231,7 +231,7 @@ ansible_managed_file: "*** YAVDR: ANSIBLE MANAGED FILE ***" #+BEGIN_SRC yaml :tangle group_vars/all :mkdirp yes branch: unstable ppa_owner: 'ppa:yavdr' -# a list of all package repositories to be added to the installation +# add the following PPAs repositories: - '{{ ppa_owner }}/main' - '{{ ppa_owner }}/unstable-main' @@ -453,14 +453,14 @@ yavdr-common executes the following tasks: #+END_SRC ***** Set up package repositories #+BEGIN_SRC yaml :tangle roles/yavdr-common/tasks/main.yml :mkdirp yes -- name: add yaVDR PPAs +- name: add PPAs apt_repository: repo: '{{ item }}' state: present update_cache: yes with_items: '{{ repositories }}' -- name: upgrade existing packages +- name: run apt-get dist-upgrade apt: upgrade: dist update_cache: yes diff --git a/group_vars/all b/group_vars/all index 4450c3a..c0f6e1c 100644 --- a/group_vars/all +++ b/group_vars/all @@ -5,7 +5,7 @@ ansible_managed_file: "*** YAVDR: ANSIBLE MANAGED FILE ***" branch: unstable ppa_owner: 'ppa:yavdr' -# a list of all package repositories to be added to the installation +# add the following PPAs repositories: - '{{ ppa_owner }}/main' - '{{ ppa_owner }}/unstable-main' diff --git a/roles/yavdr-common/tasks/main.yml b/roles/yavdr-common/tasks/main.yml index d1a27eb..a696191 100644 --- a/roles/yavdr-common/tasks/main.yml +++ b/roles/yavdr-common/tasks/main.yml @@ -30,14 +30,14 @@ state: present regexp: '^(Prompt=).*$' line: '\1never' -- name: add yaVDR PPAs +- name: add PPAs apt_repository: repo: '{{ item }}' state: present update_cache: yes with_items: '{{ repositories }}' -- name: upgrade existing packages +- name: run apt-get dist-upgrade apt: upgrade: dist update_cache: yes