Add feediron plugin for tt-rss
This commit is contained in:
parent
b5d676b6fe
commit
08bb8f22ca
1 changed files with 9 additions and 1 deletions
|
@ -42,6 +42,14 @@
|
||||||
register: fever_plugin
|
register: fever_plugin
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
|
- name: Install feediron plugin
|
||||||
|
git:
|
||||||
|
repo: https://github.com/feediron/ttrss_plugin-feediron
|
||||||
|
dest: "{{ plugins_dir.path }}/feediron"
|
||||||
|
depth: 1
|
||||||
|
register: feediron_plugin
|
||||||
|
become: true
|
||||||
|
|
||||||
- name: Ensure plugins are owned by {{ docker_user.name }}
|
- name: Ensure plugins are owned by {{ docker_user.name }}
|
||||||
file:
|
file:
|
||||||
path: "{{ plugins_dir.path }}"
|
path: "{{ plugins_dir.path }}"
|
||||||
|
@ -54,4 +62,4 @@
|
||||||
shell:
|
shell:
|
||||||
chdir: /opt/tt-rss
|
chdir: /opt/tt-rss
|
||||||
cmd: "{{ docker_update_command }}"
|
cmd: "{{ docker_update_command }}"
|
||||||
when: compose_file.changed or config_file.changed or fever_plugin.changed
|
when: compose_file.changed or config_file.changed or fever_plugin.changed or feediron_plugin.changed
|
||||||
|
|
Loading…
Reference in a new issue