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 fd876ca commit 8c74d7c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tasks/repository.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
state: directory
owner: root
group: root
mode: 0755
mode: '0755'
tags:
- yarn-repository-keyrings-directory-create

Expand All @@ -32,7 +32,7 @@
repo: "{{ item.type }} {{ item.url }} {{ item.component }}"
state: "{{ item.state | default('present') }}"
update_cache: true
mode: 0644
mode: '0644'
with_items: "{{ yarn_repositories }}"
tags:
- yarn-repository-add
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 8c74d7c

Please sign in to comment.