Files
Workstation/ansible/snap_daily_drivers/tasks/main.yml
ducoterra 65dc4c5513 Align naming scheme for "daily drivers" installs
Daily driver installs from pacman, yay, and snap should all share a
similar naming convention. This will be "<package
manager>_daily_drivers" from now on.
2022-01-31 16:39:25 -05:00

34 lines
667 B
YAML

---
# Snap Installs
- name: Ensure snap installed
community.general.pacman:
name: snapd
state: present
become: yes
- name: Ensure snapd service running
ansible.builtin.systemd:
name: snapd.socket
state: started
enabled: yes
become: yes
- name: Link /var/lib/snapd/snap /snap
ansible.builtin.file:
src: /var/lib/snapd/snap
dest: /snap
owner: root
group: root
state: link
become: yes
- name: Install snap-store
community.general.snap:
name: snap-store
state: present
become: yes
retries: 6
delay: 10
- name: Install spotify
community.general.snap:
name: spotify
state: present
become: yes