Forge Home

ovh

OVH specific server changes

10,822 downloads

10,345 latest version

4.1 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.3.0 (latest)
  • 0.2.0
released Apr 22nd 2013

Start using this module

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

Add this module to your Puppetfile:

mod 'thias-ovh', '0.3.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add thias-ovh
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install thias-ovh --version 0.3.0

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

Documentation

thias/ovh — version 0.3.0 Apr 22nd 2013

puppet-ovh

Overview

This module manages configuration specific to OVH. See http://www.ovh.com/ for more details.

  • ovh::oco::check : Manage OvhCheckOut checks
  • ovh::oco::sshkey : Manage the OVH support team SSH key's presence

To cleanly install the OCO daemon on Red Hat Enterprise Linux, you will find the source, the spec and an init script under the oco-rpm directory.

Examples

Enable the original ssh key-based root access for OVH's support staff (which is restricted by IP address) :

ovh::sshkey { 'root': }

Revoke the access, useful if it was just temporarily for diagnostics :

ovh::sshkey { 'root': ensure => absent }

Enable a local OCO check on the node (this will automatically include the daemon) :

ovh::oco::check { 'http':
  freq      => '300sec',
  http_path => '/my-health-check.php',
}

Disable the same OCO check :

ovh::oco::check { 'http':
  freq      => '300sec',
  http_path => '/my-health-check.php',
  ensure    => absent,
}