Skip to content

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

Notifications You must be signed in to change notification settings

groks/ansible-repo-extra

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published