Forge Home

graphicsmagick

Puppet module that manages the installation and configuration of GraphicsMagick

8,766 downloads

8,766 latest version

2.7 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 May 11th 2015

Start using this module

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

Add this module to your Puppetfile:

mod 'wilrnh-graphicsmagick', '0.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add wilrnh-graphicsmagick
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install wilrnh-graphicsmagick --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

wilrnh/graphicsmagick — version 0.1.0 May 11th 2015

graphicsmagick

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with graphicsmagick
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module

Overview

Puppet module to help manage GraphicsMagick on your systems.

Module Description

GraphicsMagick is the swiss army knife of image processing. Comprised of 265K physical lines (according to David A. Wheeler's SLOCCount) of source code in the base package (or 1,220K including 3rd party libraries) it provides a robust and efficient collection of tools and libraries which support reading, writing, and manipulating an image in over 88 major formats including important formats like DPX, GIF, JPEG, JPEG-2000, PNG, PDF, PNM, and TIFF.

This module installs and configures GraphicsMagick on your systems.

Setup

What graphicsmagick affects

  • Packages: binaries, developments libraries and debug symbols. ImageMagick compatibility packages, and GraphicsMagick C and C++ bindings are also installed.

Setup Requirements

This module requires that GraphicsMagick is available via package repositories. This module does not manage any package repositories.

Beginning with graphicsmagick

Simply include the main class to get started with the default options:

include '::graphicsmagick'

Usage

class {'graphicsmagick':
  package_ensure     => '1.3.18-1ubuntu3', # specify a version
  package_ensure_dev => '1.3.18-1ubuntu3', # install development libraries
  package_ensure_dbg => '1.3.18-1ubuntu3', # install debug symbols
}

Reference

Classes

Public Classes

::graphicsmagick: Installs GraphicsMagick.

Private Classes

::graphicsmagick::install: Installs GraphicsMagick packages.

Parameters

graphicsmagick

package_ensure Passed directly on to Puppet's package type ensure parameter. Defaults to present.

package_ensure_dev Whether to include development libraries. eg., libgraphicsmagick1-dev. Passed directly on to Puppet's package type ensure parameter. Defaults to absent.

package_ensure_dbg Whether to include debug symbols. eg., graphicsmagick-dbg. Passed directly on to Puppet's package type ensure parameter. Defaults to absent.

Limitations

This module currently only supports Ubuntu.

Development

Pull requests are always awesome.