https://github.com/madhacking/puppet-module-autofs
  
  
    Puppet module to manage the AutoFS automount daemon 
    https://github.com/madhacking/puppet-module-autofs
  
autofs puppet puppet-module
        Last synced: 8 months ago 
        JSON representation
    
Puppet module to manage the AutoFS automount daemon
- Host: GitHub
- URL: https://github.com/madhacking/puppet-module-autofs
- Owner: MADhacking
- License: other
- Created: 2015-04-28T21:00:56.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-18T12:25:31.000Z (over 10 years ago)
- Last Synced: 2025-01-24T21:32:39.938Z (9 months ago)
- Topics: autofs, puppet, puppet-module
- Language: Puppet
- Size: 145 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
- 
            Metadata Files:
            - Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
 
Awesome Lists containing this project
README
          # Autofs module for Puppet
## Description
Puppet module for managing Autofs mountpoints and files.
### Some Contrived Example usage
 	autofs::include	{ 'portage':
		mount_base => '/mnt/auto/portage',
		options => '--timeout=30 --ghost',
	}
	
	autofs::mount { 'distfiles':
		device  => "portage:/mnt/repositories/distfiles",
		options => 'rsize=8192,wsize=8192,soft,timeo=30,rw,vers=3',
		mapfile => 'portage',
	}
	
	autofs::mount { 'packages':
		device  => "portage:/mnt/repositories/packages",
		options => 'rsize=8192,wsize=8192,soft,timeo=30,ro,vers=3',
		mapfile => 'portage',
	}
	
### Resulting files
#### /etc/autofs/auto.master
    # This file is automatically generated by Puppet
	#
	# Any changes made to this file will be lost on the next automated Puppet run!
	
	/mnt/auto/portage /etc/autofs/auto.portage --timeout=30 --ghost
#### /etc/autofs/auto.portage
	# This file is automatically generated by Puppet
	#
	# Any changes made to this file will be lost on the next automated Puppet run!
	
	distfiles -rsize=8192,wsize=8192,soft,timeo=30,ro,vers=3 portage:/mnt/repositories/distfiles
	packages -rsize=8192,wsize=8192,soft,timeo=30,ro,vers=3 portage:/mnt/repositories/packages