main.yml 334 B

1234567891011121314151617
  1. ---
  2. - name: Dependencies installed
  3. community.general.pkgng:
  4. name: py39-pip,ffmpeg,beets
  5. state: latest
  6. - name: Mopidy plugins installed
  7. pip:
  8. name: flask,pylast
  9. state: latest
  10. - name: Beets config file installed
  11. copy:
  12. src: immortal.yml
  13. dest: /root/.conifg/beets/config.yaml
  14. owner: root
  15. mode: 0600