Forge Home

hugo

Manage Hugo with puppet

7,942 downloads

7,942 latest version

4.3 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.1.0 (latest)
released Jun 20th 2017
This version is compatible with:
  • Puppet Enterprise 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >= 4.0.0 < 5.0.0
  • , , , SLES, , NetBSD, Archlinux,

Start using this module

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

Add this module to your Puppetfile:

mod 'zloesabo-hugo', '0.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add zloesabo-hugo
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install zloesabo-hugo --version 0.1.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

zloesabo/hugo — version 0.1.0 Jun 20th 2017

puppet-hugo

Build Status

Table of Contents

  1. Description
  2. Setup
  3. Usage - Configuration options and additional functionality
  4. Reference - An under-the-hood peek at what the module is doing and how
  5. Limitations - OS compatibility, etc.
  6. Development - Guide for contributing to the module

Description

A Puppet module for managing Hugo) (A static website engine).

This module installs Hugo using pre-built binaries and does not need external package repositories.

Setup

Setup requirements

The hugo module does not automatically create parent directories for the files it manages. Set up any needed directory structures before you start.

What hugo affects

Usage

Only install hugo:

include ::hugo

Install executable generate website out of it:

class {'::hugo':
    sites => {
        '/tmp/test' => {
            'target'  => '/tmp/generated',
            'version' => 'someversion'
        }
    }
}

Reference

Class: hugo

class {'::hugo':
    manage_dependencies    => true,
    dependencies_ensure    => 'latest',
    dependencies           => ['tar', 'git'],
    manage_package         => true,
    package_ensure         => 'present',
    installation_directory => '/usr/local/bin',
    version                => '0.20.7',
    owner                  => 'root',
    group                  => 'root',
    mode                   => 'ug=rw,o=r,a=x',
    sites                  => {
        'test.org' => {
            'source' => '/tmp/test',
            'target' => '/tmp/test.org',
            'version' => 'aaa'
        },
        'test2.org' => {
            'source' => '/tmp/test',
            'target' => '/tmp/test2.org',
            'version' => 'bbb'
        }
    },
    compile_defaults       => {
        'hugo_executable' => '/usr/local/bin/hugo',
        'refreshonly'     => true
    }
}

Class: hugo::packages

class {'::hugo::packages':
    manage_dependencies => true,
    dependencies_ensure => 'latest',
    dependencies        => ['git', 'tar']
}

Class: hugo::install

class {'::hugo::install':
    manage_package         => true,
    package_ensure         => 'present',
    installation_directory => '/usr/local/bin',
    version                => '0.20.7',
    owner                  => 'root',
    group                  => 'root',
    mode                   => 'ug=rw,o=r,a=x'
}

Resource: hugo::resource::compile

hugo::resource::compile {'human.test.org':
    target               => '/tmp/human.test.org',
    version              => 'someversion',
    source               => '/tmp/test',
    refreshonly          => true,
    additional_arguments => '',
    hugo_executable      => '/usr/local/bin/hugo'
}

Limitations

See metadata.json for supported platforms.

Development

Running tests

gem install bundler
bundle install --path vendor
bundle exec rake test

Contributing

Please make sure that test cases, syntax and documentation checks are passing.