aboutsummaryrefslogtreecommitdiff
path: root/manifests/install.pp
blob: c9e9e563239aeeabe38a745e8f67c2ed7eb452aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# = Class nfs::install
#
class nfs::install {

  if $::nfs::client {
    package { $::nfs::pkg_list_client:
      ensure => $::nfs::pkg_ensure;
    }
  }

  if $::nfs::server {
    package { $::nfs::pkg_list_server:
      ensure => $::nfs::pkg_ensure;
    }
  }

}