Skip to content

Commit

Permalink
name[template] ansiblelint
Browse files Browse the repository at this point in the history
  • Loading branch information
kdpuvvadi committed Oct 10, 2022
1 parent c894cc1 commit a80e1ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .ansible-lint
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
---
skip_list:
- package-latest
- name[template]
2 changes: 1 addition & 1 deletion tasks/omada.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---

- name: Make {{ omada_dir }}install.sh executable
- name: Make install.sh executable
ansible.builtin.file:
path: "{{ omada_dir }}/install.sh"
mode: a+x
Expand Down
4 changes: 2 additions & 2 deletions tasks/setup.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---

- name: Create Omada Directory "{{ omada_dir }}"
- name: Create Omada Directory
ansible.builtin.file:
path: "{{ omada_dir }}"
state: directory
mode: '0755'

- name: Download & unzip the archive "{{ omada_dir }}"
- name: Download & unzip the archive
ansible.builtin.unarchive:
src: "{{ omada_url }}"
dest: "{{ omada_dir }}"
Expand Down

0 comments on commit a80e1ae

Please sign in to comment.