All Projects → arioch → Puppet Nfs

arioch / Puppet Nfs

Licence: other

Labels

Projects that are alternatives of or similar to Puppet Nfs

Puppet Checkmk
check_mk module for puppet
Stars: ✭ 16 (+128.57%)
Mutual labels:  puppet
Puppet Monasca
OpenStack Monasca Puppet Module. Mirror of code maintained at opendev.org.
Stars: ✭ 22 (+214.29%)
Mutual labels:  puppet
Puppet Manila
OpenStack Manila Puppet Module. Mirror of code maintained at opendev.org.
Stars: ✭ 26 (+271.43%)
Mutual labels:  puppet
Puppet Mediawiki
This is a puppet module for deploying multi-tenant mediawiki
Stars: ✭ 17 (+142.86%)
Mutual labels:  puppet
Dockerfiles
Stars: ✭ 19 (+171.43%)
Mutual labels:  puppet
Puppet
Puppet config for OCF servers and lab machines
Stars: ✭ 24 (+242.86%)
Mutual labels:  puppet
Vagrant Gaudi
[NOT MAINTAINED] Gaudi on vagrant VM
Stars: ✭ 16 (+128.57%)
Mutual labels:  puppet
Logging Hooks Presentation
material for presentation about logging hooks in PostgreSQL
Stars: ✭ 7 (+0%)
Mutual labels:  puppet
Puppet Zookeeper
Puppet module for managing Apache ZooKeeper
Stars: ✭ 19 (+171.43%)
Mutual labels:  puppet
Vagrant Puppet Nginx Uwsgi Flask
A pretty bare set up for running Flask in nginx through uwsgi in Vagrant deployed by Puppet. Got it?
Stars: ✭ 25 (+257.14%)
Mutual labels:  puppet
Puppet Confluence
A puppet module to install confluence
Stars: ✭ 18 (+157.14%)
Mutual labels:  puppet
Fuel Plugin External Glusterfs
MOVED: now at https://opendev.org/x/fuel-plugin-external-glusterfs
Stars: ✭ 19 (+171.43%)
Mutual labels:  puppet
Vagrant Hadoop
Vagrant configuration to bootstrap a Hadoop cluster
Stars: ✭ 24 (+242.86%)
Mutual labels:  puppet
Vagrant Solr
Stars: ✭ 17 (+142.86%)
Mutual labels:  puppet
Symfony2 Puppet
A simple layout of your Vagrant / puppet manifests that you can drop into your root directory of your symfony2 project
Stars: ✭ 26 (+271.43%)
Mutual labels:  puppet
Vagrant Rails Dev
my vagrant rails development box
Stars: ✭ 16 (+128.57%)
Mutual labels:  puppet
Download Your Travelmap
free your travelmap
Stars: ✭ 22 (+214.29%)
Mutual labels:  puppet
Puppet Yum
Puppet module for Yum
Stars: ✭ 7 (+0%)
Mutual labels:  puppet
Puppet Node manager
Create and manage PE node groups as resources.
Stars: ✭ 7 (+0%)
Mutual labels:  puppet
Drupal Puppet
Puppet modules for managing Drupal and the LAMP stack
Stars: ✭ 24 (+242.86%)
Mutual labels:  puppet

Puppet NFS

Requirements

Tested on...

  • Debian 5 (Lenny)
  • Debian 6 (Squeeze)
  • CentOS 6
  • CentOS 7

Example usage

Install NFS client tools

node /box/ {
  include nfs
}

Install NFS client and server

node /box/ {
  class { 'nfs':
    server => true;
  }
}

Export NFS shares

node /box/ {
  class { 'nfs':
    server => true;
  }

  nfs::export { '/srv/nfs01 10.0.1.1/24':
    export_directory => '/srv/nfs01',
    export_target    => '10.0.1.1/24',
    export_options   => 'rw,sync,no_root_squash',
  }

  nfs::export { '/srv/nfs01 10.0.2.1/24':
    export_directory => '/srv/nfs01',
    export_target    => '10.0.2.1/24',
    export_options   => 'rw,sync,no_root_squash',
  }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].