879a5bafa8
Use "dest" not "path" to specify the output location. Change-Id: I28079d34bfc2ffbfbc8ac66537435acc27d9d30a Signed-off-by: Doug Hellmann <doug@doughellmann.com>
17 lines
301 B
YAML
17 lines
301 B
YAML
- name: Ensure launchpadlib directory
|
|
file:
|
|
path: ~/.launchpadlib
|
|
state: directory
|
|
|
|
- name: Write credentials
|
|
template:
|
|
dest: ~/.launchpadlib/creds
|
|
mode: 0600
|
|
src: creds.j2
|
|
|
|
- name: Install launchpadlib
|
|
package:
|
|
name: python-launchpadlib
|
|
state: present
|
|
become: yes
|