Adds the RPM Fusion repo. Tested on CentOS 6 and Fedora 19.
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,
}