summaryrefslogtreecommitdiffstats
path: root/fuel/build/f_gif/puppet/modules/opnfv/manifests/gif.pp
blob: d51cbe7c7cd343077f4a6978696584e49d1aedc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
class opnfv::gif {
  if $::osfamily == 'Debian' {
    case $::fuel_settings['role'] {
      /controller/: {
        package { 'libgif4':
          ensure => installed,
        }
      }
    }
  }
}