https://github.com/compscidr/ansible-spotify
Ansible collection to install spotify
https://github.com/compscidr/ansible-spotify
Last synced: 4 months ago
JSON representation
Ansible collection to install spotify
- Host: GitHub
- URL: https://github.com/compscidr/ansible-spotify
- Owner: compscidr
- License: gpl-3.0
- Created: 2024-12-01T04:46:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-12-10T19:15:48.000Z (6 months ago)
- Last Synced: 2025-12-11T05:54:10.846Z (6 months ago)
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ansible-spotify
[](https://galaxy.ansible.com/ui/repo/published/compscidr/spotify/)
[](https://github.com/compscidr/ansible-spotify/actions/workflows/check.yml)
[](https://ansible.readthedocs.io/projects/lint/rules/)
Ansible collection to install spotify
## Usage:
Add the collection to your meta/requirements.yml:
```
collections:
- name: compscidr.spotify
version: ""
```
Use the role(s) in a playbook:
```
- name: Install spotify
hosts: all
roles:
- spotify
```
## Testing:
Using molecule:
```
python -m venv venv
. venv/bin/activate
pip install molecule molecule-docker passlib
molecule test
```