Skip to content

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma committed Apr 29, 2024
1 parent 06ea600 commit b9a9681
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions images/capi/ansible/roles/providers/tasks/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,16 @@
state: present

- name: Find Ubuntu Version
ansible.builtin.shell:
ansible.builtin.command:
cmd: lsb_release -cs
register: ubuntu_version
changed_when: false

- name: Find Host Architecture
ansible.builtin.shell:
ansible.builtin.command:
cmd: dpkg --print-architecture
register: host_arch
changed_when: false

- name: Add Microsoft Package Repository
ansible.builtin.apt_repository:
Expand All @@ -37,4 +39,3 @@
ansible.builtin.apt:
name: azure-cli
state: present

0 comments on commit b9a9681

Please sign in to comment.