13 lines
No EOL
240 B
Puppet
13 lines
No EOL
240 B
Puppet
class nginx::package {
|
|
case $operatingsystem {
|
|
centos,fedora,rhel: {
|
|
include nginx::package::redhat
|
|
}
|
|
debian,ubuntu: {
|
|
include nginx::package::debian
|
|
}
|
|
opensuse,suse: {
|
|
include nginx::package::suse
|
|
}
|
|
}
|
|
} |