Minor changes, update task and variable descriptions

This commit is contained in:
Alexander Grothe 2017-07-30 14:54:43 +02:00
parent f173dc14cb
commit 264a2f2252
3 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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'

View File

@ -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