Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
buluma committed May 3, 2024
1 parent b600918 commit 0a3cd49
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions molecule/default/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@

roles:
- role: buluma.bootstrap
- roles: buluma.buluma.ca_certificates
1 change: 1 addition & 0 deletions requirements.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
roles:
- name: buluma.bootstrap
- name: buluma.ca_certificates
collections:
- name: community.general
10 changes: 9 additions & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,21 @@
# - when: ansible_architecture == "x86_64"
# block:

- name: "Ensure FUSE installed for using appimages."
- name: "Debian - Ensure FUSE installed for using appimages."
ansible.builtin.apt:
name:
- libfuse2
state: latest
when: ansible_os_family == "Debian"

- name: "Fedora - Ensure FUSE installed for using appimages."
ansible.builtin.apt:
name:
- fuse
- fuse-libs
state: latest
when: ansible_os_family == "Fedora"

- name: "Latest nvim installed."
ansible.builtin.include_tasks: install-neovim.yml
when: neovim | bool
Expand Down

0 comments on commit 0a3cd49

Please sign in to comment.