Skip to content

Commit

Permalink
chore(roles/scap_open): renamed output jsons.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <[email protected]>
  • Loading branch information
FedeDP authored and poiana committed Jul 28, 2023
1 parent bdd2729 commit b191c9a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ansible-playbooks/roles/scap_open/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
- name: Dump error message to file
ansible.builtin.copy:
content: "{{ cmake_result | to_nice_json }}"
dest: "{{ output_dest_dir }}/cmake-build-directory.json"
dest: "{{ output_dest_dir }}/cmake-configure.json"
mode: '0755'
delegate_to: localhost
become: false
Expand Down Expand Up @@ -99,7 +99,7 @@
- name: Dump error message to file
ansible.builtin.copy:
content: "{{ km_result | to_nice_json }}"
dest: "{{ output_dest_dir }}/build-kernel-module.json"
dest: "{{ output_dest_dir }}/kmod_build.json"
mode: '0755'
delegate_to: localhost
become: false
Expand Down Expand Up @@ -127,7 +127,7 @@
- name: Dump error message to file
ansible.builtin.copy:
content: "{{ result | to_nice_json }}"
dest: "{{ output_dest_dir }}/scap-open-and-kernel-module.json"
dest: "{{ output_dest_dir }}/kmod_scap-open.json"
mode: '0755'
delegate_to: localhost
become: false
Expand All @@ -149,7 +149,7 @@
- name: Dump error message to file
ansible.builtin.copy:
content: "{{ bpf_probe_result | to_nice_json }}"
dest: "{{ output_dest_dir }}/build-bpf-probe.json"
dest: "{{ output_dest_dir }}/bpf-probe_build.json"
mode: '0755'
delegate_to: localhost
become: false
Expand All @@ -171,7 +171,7 @@
- name: Dump error message to file
ansible.builtin.copy:
content: "{{ result | to_nice_json }}"
dest: "{{ output_dest_dir }}/scap-open-and-bpf-probe.json"
dest: "{{ output_dest_dir }}/bpf-probe_scap-open.json"
mode: '0755'
delegate_to: localhost
become: false
Expand All @@ -193,7 +193,7 @@
- name: Dump error message to file
ansible.builtin.copy:
content: "{{ result | to_nice_json }}"
dest: "{{ output_dest_dir }}/scap-open-and-modern-probe.json"
dest: "{{ output_dest_dir }}/modern-bpf_scap-open.json"
mode: '0755'
delegate_to: localhost
become: false

0 comments on commit b191c9a

Please sign in to comment.