Puppet Class: mount_providers

Defined in:
manifests/init.pp

Overview

Sample usage

Class names need to match module names for the autoloader to find them.



4
5
6
7
8
9
10
11
12
13
14
# File 'manifests/init.pp', line 4

class mount_providers {
  mount_providers::do { '/mnt/export':
    device => 'master:/export',
    options => ['ro','hard'],
  }

  # notify { "remount":
  #   message => "remount",
  #   notify  => Mount_providers::Do['/mnt/export'],
  # }
}