blob: cf3a712cbd1089af42144c1ecae74ec126f64f9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class nodo::utils::multimedia::shockwave {
# See also https://github.com/i-rinat/freshplayerplugin
package { [
'flashplugin-nonfree',
]:
ensure => installed ,
}
# Flash alternative
file { "/etc/alternatives/flash-mozilla.so":
owner => root,
group => root,
ensure => "/usr/lib/flashplugin-nonfree/libflashplayer.so",
require => Package['flashplugin-nonfree'],
}
}
|