Skip to content

Commit

Permalink
Cs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Dec 4, 2024
1 parent b56c6c9 commit f1774c2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
dest: "{{ docker_docker_default_file }}"
owner: root
group: root
mode: 0644
mode: '0644'
notify: restart docker
tags:
- configuration
Expand Down
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:
- docker-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: "{{ docker_apt_repositories }}"
tags:
- docker-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
roles:
Expand Down

0 comments on commit f1774c2

Please sign in to comment.