Skip to content

Commit

Permalink
Cs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Dec 10, 2024
1 parent e8828e2 commit 445918c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
matrix:
include:
- distro: debian10
ansible-version: '>=9, <10'
- distro: debian11
- distro: debian12
- distro: ubuntu1804
Expand Down
8 changes: 4 additions & 4 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
state: directory
owner: root
group: root
mode: 0755
mode: '0755'
tags:
- configuration
- gnu-parallel
Expand All @@ -43,7 +43,7 @@
dest: "{{ gnu_parallel_download_path }}/{{ gnu_parallel_download_url | basename }}"
owner: root
group: root
mode: 0644
mode: '0644'
force: true
tags:
- configuration
Expand All @@ -57,7 +57,7 @@
state: directory
owner: root
group: root
mode: 0755
mode: '0755'
tags:
- configuration
- gnu-parallel
Expand Down Expand Up @@ -130,7 +130,7 @@
dest: "{{ ansible_env.HOME }}/"
owner: "{{ ansible_env.USER }}"
group: "{{ ansible_env.USER }}"
mode: 0644
mode: '0644'
tags:
- configuration
- gnu-parallel
Expand Down
3 changes: 2 additions & 1 deletion tests/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# test file
---
- hosts: localhost
- name: converge
hosts: localhost
connection: local
become: true
roles:
Expand Down
3 changes: 2 additions & 1 deletion tests/vagrant.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# test file
---
- hosts: all
- name: converge
hosts: all
remote_user: vagrant
become: true
roles:
Expand Down

0 comments on commit 445918c

Please sign in to comment.