newmen/ansible-rvm

GPG Issue

Closed this issue · 6 comments

Hi, my machine was missing GPG, which is a dependency to install rvm.

Adding gnu this to the role solved my issue.

  - name: ensure necessary packages are installed
    yum:
      name: "{{ item }}"
      state: present
    with_items:
      - curl
      - gnupg2

Thank you for your note. I fixed it.
But why you do not use the official rvm1 role?

Thanks, whats rvm1 role?

I meant... don't you think that the official role is most reputable?

Right, well I am new to Ansible and this script was the first I found somehow :)

Just pulled and realised I used the code with apt where the snippet I pasted here from stackoverflow has yum. There should be a way to one or the other depending on system.

I've added support of apt distributives
You can try again