1234567891011121314151617 |
- ---
- - name: Dependencies installed
- community.general.pkgng:
- name: py39-pip,ffmpeg,beets
- state: latest
- - name: Mopidy plugins installed
- pip:
- name: flask,pylast
- state: latest
- - name: Beets config file installed
- copy:
- src: immortal.yml
- dest: /root/.conifg/beets/config.yaml
- owner: root
- mode: 0600
|