Skip to content

Commit d846ea2

Browse files
committed
FQDN
1 parent 3645bd4 commit d846ea2

File tree

5 files changed

+19
-20
lines changed

5 files changed

+19
-20
lines changed

.ansible-lint

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
---
22
skip_list:
33
- experimental # all rules tagged as experimental
4-
- fqcn-builtins

tasks/absent.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
22

33
- name: "Remove {{ goss_test_directory }}"
4-
file:
4+
ansible.builtin.file:
55
path: "{{ goss_test_directory }}"
66
state: absent
77

88
- name: Remove goss
9-
file:
9+
ansible.builtin.file:
1010
path: "{{ goss_path }}/goss"
1111
state: absent
1212

1313
- name: Remove dgoss
14-
file:
14+
ansible.builtin.file:
1515
path: "{{ goss_path }}/dgoss"
1616
state: absent

tasks/prepare.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
- name: Install ca-certificates
4-
apt:
4+
ansible.builtin.apt:
55
name: ca-certificates
66
register: network_access
77
until: network_access is success
@@ -13,7 +13,7 @@
1313

1414
- name: Install EPEL
1515
when: ansible_os_family == 'RedHat'
16-
yum:
16+
ansible.builtin.yum:
1717
name: epel-release
1818
state: present
1919
register: epel_install
@@ -23,7 +23,7 @@
2323

2424
- name: Install jmespath
2525
# when: ansible_os_family == 'RedHat'
26-
package:
26+
ansible.builtin.package:
2727
name: python3-jmespath
2828
state: present
2929
update_cache: true

tasks/present.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
- name: Get goss binary
1010
become: false
1111
delegate_to: localhost
12-
get_url:
12+
ansible.builtin.get_url:
1313
url: "{{ goss_url }}"
1414
checksum: "sha256:{{ goss[goss_version].sha256sum }}"
1515
validate_certs: false
@@ -25,14 +25,14 @@
2525
- name: Ensure we have local copy of goss
2626
become: false
2727
delegate_to: localhost
28-
stat:
28+
ansible.builtin.stat:
2929
path: /tmp/goss
3030
register: goss_bin
3131
tags:
3232
- base_goss
3333

3434
- name: Copy goss to remote
35-
copy:
35+
ansible.builtin.copy:
3636
src: "/tmp/goss"
3737
dest: "{{ goss_path }}/goss"
3838
owner: "{{ goss_user }}"
@@ -44,7 +44,7 @@
4444

4545

4646
- name: Get goss binary directly
47-
get_url:
47+
ansible.builtin.get_url:
4848
url: "{{ goss_url }}"
4949
checksum: "sha256:{{ goss[goss_version].sha256sum }}"
5050
validate_certs: false
@@ -61,7 +61,7 @@
6161
- base_goss
6262

6363
- name: Copy dgoss to remote
64-
copy:
64+
ansible.builtin.copy:
6565
src: "dgoss"
6666
dest: "{{ goss_path }}/dgoss"
6767
mode: 0755
@@ -71,7 +71,7 @@
7171
- base_goss
7272

7373
- name: "Ensure presence of directory {{ goss_test_directory }}"
74-
file:
74+
ansible.builtin.file:
7575
path: "{{ goss_test_directory }}"
7676
state: directory
7777
owner: "{{ goss_user }}"
@@ -81,15 +81,15 @@
8181
- base_goss
8282

8383
- name: Copy test_goss.yaml to remote
84-
template:
84+
ansible.builtin.template:
8585
src: test_goss.yaml.j2
8686
dest: "{{ goss_test_directory }}/test_goss.yaml"
8787
mode: 0644
8888
tags:
8989
- base_goss
9090

9191
- name: Copy goss.yaml to remote
92-
template:
92+
ansible.builtin.template:
9393
src: goss.yaml.j2
9494
dest: "{{ goss_test_directory }}/goss.yaml"
9595
mode: 0644

tasks/verify.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
- name: Ensure we have remote copy of goss
4-
stat:
4+
ansible.builtin.stat:
55
path: "{{ goss_dst }}"
66
register: goss_bin_remote
77
tags:
@@ -15,7 +15,7 @@
1515
- validate
1616
block:
1717
- name: Execute Goss tests
18-
command: "{{ goss_dst }} validate -f json"
18+
ansible.builtin.command: "{{ goss_dst }} validate -f json"
1919
args:
2020
chdir: "{{ goss_test_directory }}"
2121
register: test_results
@@ -24,7 +24,7 @@
2424
check_mode: false
2525

2626
- name: Show failing Goss tests
27-
debug:
27+
ansible.builtin.debug:
2828
msg: "Goss test failed"
2929
loop: "{{ test_results.stdout | from_json | json_query(query) }}"
3030
vars:
@@ -33,11 +33,11 @@
3333
failed_when: test_results.rc != 0
3434

3535
- name: Execute Goss tests
36-
command: "{{ goss_dst }} -g {{ goss_test_directory }}/goss.yaml validate -f {{ goss_format }}"
36+
ansible.builtin.command: "{{ goss_dst }} -g {{ goss_test_directory }}/goss.yaml validate -f {{ goss_format }}"
3737
changed_when: false
3838
register: test_results
3939

4040
- name: Report about the Goss results
41-
debug:
41+
ansible.builtin.debug:
4242
msg: "{{ test_results.stdout_lines }}"
4343
when: goss_report | bool

0 commit comments

Comments
 (0)