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 94a9c0b commit a77ac27
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 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
4 changes: 2 additions & 2 deletions tasks/composer-json.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ansible.builtin.file:
path: "{{ item.dest | dirname }}"
state: directory
mode: 0755
mode: '0755'
with_items: "{{ composer_composer_json_map }}"
become: true
become_user: "{{ item.owner | default('root') }}"
Expand All @@ -15,7 +15,7 @@
ansible.builtin.copy:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
mode: 0644
mode: '0644'
with_items: "{{ composer_composer_json_map }}"
become: true
become_user: "{{ item.owner | default('root') }}"
Expand Down
2 changes: 1 addition & 1 deletion tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
path: "{{ composer_install_dir }}/composer"
owner: root
group: root
mode: 0755
mode: '0755'
tags:
- composer-install-permissions

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
pre_tasks:
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
pre_tasks:
Expand Down

0 comments on commit a77ac27

Please sign in to comment.