Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
gizmoguy committed Oct 28, 2024
1 parent 564eb62 commit 93d5c6b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions molecule/default/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@
- "netplan.io"
when: ansible_distribution == "Ubuntu"

- name: "DEBUG"

Check failure on line 25 in molecule/default/prepare.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

command-instead-of-shell

Use shell only when shell functionality is required.

Check failure on line 25 in molecule/default/prepare.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

no-changed-when

Commands should not change things if nothing needs doing.
ansible.builtin.shell: "journalctl -u udev"
register: _dbg
when: ansible_distribution == "Ubuntu"

- debug:

Check failure on line 30 in molecule/default/prepare.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

fqcn[action-core]

Use FQCN for builtin module actions (debug).

Check failure on line 30 in molecule/default/prepare.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

name[missing]

All tasks should be named.
var: _dbg

- name: "DEBUG"

Check failure on line 33 in molecule/default/prepare.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

command-instead-of-module

systemctl used in place of systemd module

Check failure on line 33 in molecule/default/prepare.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

command-instead-of-shell

Use shell only when shell functionality is required.

Check failure on line 33 in molecule/default/prepare.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

no-changed-when

Commands should not change things if nothing needs doing.
ansible.builtin.shell: "systemctl start udev"
register: _dbg
Expand Down

0 comments on commit 93d5c6b

Please sign in to comment.