Skip to content

Commit

Permalink
format netstat output
Browse files Browse the repository at this point in the history
  • Loading branch information
bissquit committed Dec 4, 2023
1 parent 2f59b20 commit 97a697f
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions molecule/end-to-end/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@
ansible.builtin.include_tasks:
file: ../verify-common.yml

- name: temporary test
ansible.builtin.shell: |
netstat -tulpn
register: netstat
changed_when: false
- name: Netstat output
block:
- name: Run netstat
ansible.builtin.shell: |
netstat -tulpn
register: netstat
changed_when: false

- name: Debug
ansible.builtin.debug:
var: netstat
- name: Netstat debug
ansible.builtin.debug:
var: netstat

0 comments on commit 97a697f

Please sign in to comment.