7c60dadb9a
* Start of alpine testing * More updates * Add forgotten file * remove debug * Add alpine3 * equal * group 4 * group 4 * group 5 * Try to decrease test length * libuser only available in testing * Remove debug * Make loops target work on hosts without gnu date * Enable alpine testing * ci_complete * Don't specify uid for creating test user * ci_complete * Re-sort docker completion * use newer container image * ci_complete * fix indentation Co-authored-by: Matt Clay <matt@mystile.com> Co-authored-by: Matt Clay <matt@mystile.com>
11 lines
322 B
YAML
11 lines
322 B
YAML
- hosts: localhost
|
|
tasks:
|
|
- name: install git
|
|
package:
|
|
name: git
|
|
when: ansible_distribution not in ["MacOSX", "Alpine"]
|
|
register: git_install
|
|
- name: save install result
|
|
copy:
|
|
content: '{{ git_install }}'
|
|
dest: '{{ lookup("env", "OUTPUT_DIR") }}/git_install.json'
|