Forge Home

autofu

Autofu Service Module for Puppet

9,974 downloads

9,974 latest version

2.0 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.0.1 (latest)
released Mar 7th 2013

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'pdxcat-autofu', '0.0.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add pdxcat-autofu
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install pdxcat-autofu --version 0.0.1

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download
Tags: ubuntu, autofs

Documentation

pdxcat/autofu — version 0.0.1 Mar 7th 2013

Autofu

This puppet module installs a pseudo-service for Ubuntu called "autofu". It was designed to plug a hole in autofs functionality when a solaris server running a legacy FTP service needed to be replaced. Solaris autofs is a heck of a lot more full-featured than linux as it turns out, and if you don't have the option of restructuring your storage to conform to linux autofs' limitations, you write hackjob "services" to do the job. Hail autofu.

Thanks to JeroenHoek on ubuntuforums.org for the idea and code example. http://ubuntuforums.org/showthread.php?t=1389291

Example usage:

autofu::mount { 'ftpserver':
  mountpoint => '/ftp',
  location   => 'ftpserver.cat.pdx.edu:/volumes/ftp',
  options    => 'rw,hard,intr,nosuid',
}