Added initial packages

This commit is contained in:
aJuvan 2026-04-07 18:36:49 +02:00
parent 43abbf2093
commit ed09d8d86c
Signed by: andraz.juvan
GPG key ID: 9F3122063FEDE8FF
15 changed files with 72 additions and 0 deletions

2
roles/ropr/meta/main.yml Normal file
View file

@ -0,0 +1,2 @@
dependencies:
- rust

View file

@ -0,0 +1,4 @@
- import_tasks: main_win.yml
when: ansible_os_family == 'Windows'
- import_tasks: main_lin.yml
when: ansible_os_family == 'Debian'

View file

@ -0,0 +1,4 @@
- name: Install ropr
ansible.builtin.command:
cmd: cargo install ropr --root /usr/local
creates: /usr/local/bin/ropr

View file

@ -0,0 +1,3 @@
- name: Uninstallable
debug:
msg: "This task is not installable on Windows. Skipping."