diff options
author | Matt Martz <matt@sivel.net> | 2020-08-07 21:28:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-07 21:28:10 +0200 |
commit | 7c60dadb9a3832dee0014113a337bc10fa1088c0 (patch) | |
tree | b60f7cc1c219cf3eb13c0229ade2b05e7f934439 /test/integration/targets/service/tasks | |
parent | remove network for 2.10 base porting guide (#71158) (diff) | |
download | ansible-7c60dadb9a3832dee0014113a337bc10fa1088c0.tar.xz ansible-7c60dadb9a3832dee0014113a337bc10fa1088c0.zip |
Updates to Integration tests to pass against Alpine (#70946)
* 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>
Diffstat (limited to 'test/integration/targets/service/tasks')
-rw-r--r-- | test/integration/targets/service/tasks/main.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/integration/targets/service/tasks/main.yml b/test/integration/targets/service/tasks/main.yml index 69a9ef205e..4fc2ddfe32 100644 --- a/test/integration/targets/service/tasks/main.yml +++ b/test/integration/targets/service/tasks/main.yml @@ -1,3 +1,7 @@ +- name: skip unsupported distros + meta: end_host + when: ansible_distribution in ['Alpine'] + - name: install the test daemon script copy: src: ansible_test_service.py |