File tree 3 files changed +9
-7
lines changed
tests/roles/testrsync_server/tasks
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -30,13 +30,15 @@ jobs:
30
30
with :
31
31
python-version : ' 3.x'
32
32
33
- - name : Install Ansible.
34
- run : pip3 install ansible-core
33
+ - name : Install Ansible
34
+ run : |
35
+ python -m pip install --upgrade pip
36
+ pip install ansible
35
37
36
38
- name : Install required collections
37
39
run : |
38
- ansible-galaxy collection install community.docker
39
- ansible-galaxy collection install community.general
40
+ ansible-galaxy collection install -r requirements.yml
41
+ ansible-galaxy collection install -r molecule/default/requirements.yml
40
42
41
43
- name : List installed collections
42
44
run : ansible-galaxy collection list
Original file line number Diff line number Diff line change 1
1
---
2
- # Install a role from Ansible Galaxy.
2
+ roles : []
3
3
collections :
4
4
- name : community.docker
5
5
version : " >=3.10.4"
Original file line number Diff line number Diff line change 61
61
that :
62
62
- ansible_facts.services.rsync['state'] == 'running'
63
63
64
- - name : Gather facts on listening ports
65
- community.general.listen_ports_facts :
64
+ # - name: Gather facts on listening ports
65
+ # community.general.listen_ports_facts:
66
66
67
67
- name : Test assert TCP port
68
68
ansible.builtin.assert :
You can’t perform that action at this time.
0 commit comments