16 lines
343 B
YAML
16 lines
343 B
YAML
|
---
|
||
|
- hosts: all
|
||
|
|
||
|
pre_tasks:
|
||
|
- name: Copy initctl_faker into place for Ubuntu 14.04.
|
||
|
copy:
|
||
|
src: initctl_faker
|
||
|
dest: /sbin/initctl
|
||
|
mode: 0755
|
||
|
force: yes
|
||
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '14.04'
|
||
|
changed_when: false
|
||
|
|
||
|
roles:
|
||
|
- role_under_test
|