/ansible-repo-extra

An ansible role to install the rpmfusion free, nonfree, and livna yum package repositories

repo-extra

An ansible role to install the rpmfusion free, nonfree, and livna yum repositories which contain extra software packages not available in the standard Fedora repositories.

After enabling the role you must explicitly install the packages you want:

---
- hosts: localhost

  roles:
    - groks.repo-extra

  tasks:
    - name: install packages not in the main fedora repos
      yum: name={{ item }} state=present
      with_items:
        - gstreamer-plugins-bad
        - freetype-freeworld
        - libdvdcss
        - VirtualBox

Get a list of the available packages by running the following command:

yum --disablerepo="*" \
    --enablerepo="rpmfusion-free,rpmfusion-nonfree,livna" \
    list available | grep -v i686

Requirements

An installation of Fedora.

Role Variables

None.

Dependencies

None.

License

BSD