2017-08-16 16:35:56 +02:00
|
|
|
|
- name: update dummy alternative
|
|
|
|
|
alternatives:
|
|
|
|
|
name: dummy
|
|
|
|
|
path: '/usr/bin/dummy{{ item }}'
|
|
|
|
|
link: /usr/bin/dummy
|
|
|
|
|
priority: '{{ 60 + item|int }}'
|
|
|
|
|
register: alternative
|
|
|
|
|
|
|
|
|
|
- name: execute dummy command
|
|
|
|
|
shell: dummy
|
|
|
|
|
register: cmd
|
|
|
|
|
|
|
|
|
|
- name: check if link group is in manual mode
|
|
|
|
|
shell: 'head -n1 {{ alternatives_dir }}/dummy | grep "^manual$"'
|
|
|
|
|
|
|
|
|
|
- name: check expected command was executed
|
|
|
|
|
assert:
|
|
|
|
|
that:
|
2017-11-27 23:58:08 +01:00
|
|
|
|
- 'alternative is changed'
|
2017-08-16 16:35:56 +02:00
|
|
|
|
- 'cmd.stdout == "dummy{{ item }}"'
|
|
|
|
|
|
|
|
|
|
- name: check that alternative has been updated
|
|
|
|
|
command: "grep -Pzq '/bin/dummy{{ item }}\\n{{ 60 + item|int }}' '{{ alternatives_dir }}/dummy'"
|