Puppet RPM Fusion repo module

Adds the RPM Fusion repo. Tested on CentOS 6 and Fedora 19.

Usage

include rpmfusion

This will enable the free repo for updates-released. To enable the nonfree repo:

class { 'rpmfusion':
  nonfree => 1,
}

To enable other repos specify them in an array.

class { 'rpmfusion':
  repo    => [ '-', 'updates-released', 'updates-testing' ],
  nonfree => 1,
}

Dependencies