12345678910111213141516171819202122232425262728293031 |
- - name: Dependencies installed
- community.general.pkgng:
- name: py311-pip,py311-cryptography,py311-sqlite3,postgresql17-client,jpeg-turbo,tiff,webp,lcms2,freetype2,cairo,pango,libxml2,libxslt,git-tiny
- state: latest
- - name: Vrobbler installed
- pip:
- name: vrobbler
- - name: Vrobbler conf installed
- template:
- src: vrobbler.conf.j2
- dest: /usr/local/etc/vrobbler.conf
- - name: Vrobbler nginx location file installed
- copy:
- src: nginx-vrobbler.conf
- dest: /usr/local/etc/nginx/vrobbler.conf
- notify: Nginx restarted
- - name: Vrobbler immortal file installed
- copy:
- src: immortal-vrobbler.yml
- dest: /usr/local/etc/immortal/vrobbler.yml
- notify: Immortal restarted
- - name: Vrobbler Celery immortal file installed
- copy:
- src: immortal-vrobbler-celery.yml
- dest: /usr/local/etc/immortal/vrobbler-celery.yml
- notify: Immortal restarted
|