Skip to content

Commit

Permalink
Merge pull request #395 from konstruktoid/lint
Browse files Browse the repository at this point in the history
basic linting
  • Loading branch information
konstruktoid authored Jun 25, 2024
2 parents b5e60b2 + 68bc315 commit 0010849
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .ansible-lint
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ exclude_paths:
- .git/
- .github/
- .pre-commit-config.yaml
- tests
6 changes: 3 additions & 3 deletions requirements.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
collections:
- name: ansible.posix
version: '1.5.4'
version: 1.5.4
source: https://github.com/ansible-collections/ansible.posix.git
type: git
- name: community.docker
version: '3.10.4'
version: 3.10.4
source: https://github.com/ansible-collections/community.docker.git
type: git
- name: community.general
version: '9.1.0'
version: 9.1.0
source: https://github.com/ansible-collections/community.general.git
type: git
2 changes: 1 addition & 1 deletion tasks/docker_compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

- name: Download docker-compose
ansible.builtin.get_url:
url: '{{ docker_compose_url }}/{{ docker_compose_release }}/docker-compose-linux-x86_64'
url: "{{ docker_compose_url }}/{{ docker_compose_release }}/docker-compose-linux-x86_64"
dest: "{{ docker_user_info.home }}/.docker/cli-plugins/docker-compose"
checksum: sha256:{{ docker_compose_release_shasum }}
owner: "{{ docker_user }}"
Expand Down
2 changes: 1 addition & 1 deletion tasks/pre.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
become: true
ansible.posix.sysctl:
name: net.ipv4.ping_group_range
value: "0 2147483647"
value: 0 2147483647
sysctl_set: true
state: present
reload: true
Expand Down

0 comments on commit 0010849

Please sign in to comment.