Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
davestephens committed May 28, 2024
1 parent 2ca43fb commit 4c7123a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions roles/calibreweb/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@
- name: Start Calibre-web
block:
- name: Create Calibre-web Directories
file:
ansible.builtin.file:
path: "{{ item }}"
state: directory
with_items:
- "{{ calibreweb_data_directory }}/config"
- "{{ calibreweb_data_directory }}/data"

- name: Calibre-web Docker Container

Check failure on line 12 in roles/calibreweb/tasks/main.yml

View workflow job for this annotation

GitHub Actions / Lint

syntax-check[specific]

couldn't resolve module/action 'community'. This often indicates a misspelling, missing collection, or incorrect module path.
docker_container:
community:
docker:
docker_container:
name: "{{ calibreweb_container_name }}"
image: linuxserver/calibre-web:latest
pull: true
Expand Down Expand Up @@ -39,7 +41,7 @@
- name: Stop Calibre-web
block:
- name: Stop Calibre-web
docker_container:
community.docker.docker_container:
name: "{{ calibreweb_container_name }}"
state: absent
when: calibreweb_enabled is false
4 changes: 2 additions & 2 deletions roles/silverbullet/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
with_items:
- "{{ silverbullet_data_directory }}"

- name: silverbullet Docker Container
- name: Silverbullet Docker Container
community.docker.docker_container:
name: "{{ silverbullet_container_name }}"
image: "{{ silverbullet_image_name }}:{{ silverbullet_image_version }}"
Expand All @@ -35,7 +35,7 @@
homepage.description: Notes for developers
when: silverbullet_enabled is true

- name: Stop silverbullet
- name: Stop Silverbullet
block:
- name: Stop silverbullet
community.docker.docker_container:
Expand Down

0 comments on commit 4c7123a

Please sign in to comment.