Skip to content
Snippets Groups Projects
libstdc.pp 654 B
Newer Older
Adam Lewenberg's avatar
Adam Lewenberg committed
# Provides libstdc++ libraries.  Debian normally doesn't need the help, since
# package dependencies should take care of this and we don't run as much
# unpackaged software on Debian, but we do still have to be able to install
# the version 5 library for Dell firmware updates.

class base::libstdc {
    if $osfamily == 'RedHat' {
Adam Lewenberg's avatar
Adam Lewenberg committed
        package {
            'libstdc++':       ensure => present;
            'libstdc++-devel': ensure => present;
        }
    }
}

class base::libstdc::v5 {
    case $osfamily {
        'Debian':           { package { 'libstdc++5': ensure => present } }
        'RedHat':           { include base::libstdc }
Adam Lewenberg's avatar
Adam Lewenberg committed
    }