Forge Home

sevenzip

Installs the application 7-Zip

8,879 downloads

7,812 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.2.2 (latest)
  • 0.2.1
  • 0.2.0
  • 0.1.1
  • 0.1.0
released Aug 3rd 2017
This version is compatible with:
  • Puppet Enterprise 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >= 4.5.0 < 5.0.0

Start using this module

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

Add this module to your Puppetfile:

mod 'dermac-sevenzip', '0.2.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add dermac-sevenzip
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install dermac-sevenzip --version 0.2.2

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: 7-zip

Documentation

dermac/sevenzip — version 0.2.2 Aug 3rd 2017

7-Zip module for puppet

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 sevenzip
  4. Limitations

Overview

The sevenzip-module installs the application 7-Zip

Module Description

The sevenzip-module installs 7-Zip on Windows with the chocolatey-module in silent mode.

Setup

Setup Requirements

The sevenzip-module uses the chocolatey-chocolatey module

Beginning with sevenzip

for a simple sevenzip-installation use:

    class { "sevenzip" :
    }
package_ensure

One of the following values:

  • installed: Installs the current version
  • latest: Installs the current version and updates to every new release
  • '1.0.0': Installs a specific version
  • absent: Removes the application
package_name

Name of the package in the os-specific package-manager. In normal circumstances there is no need to change this value.

prerelease

Wether or not using the prerelease of the package. This is not available in all providers.

checksum

Override the maintainer-provided checksum for the package. This is not available in all providers.

To install a specific version of sevenzip on Windows and override the maintainers checksum:

  class {sevenzip:
    package_ensure => '16.4.0.20170506',
    package_name   => ['7zip'],
    prerelease     => false,
    checksum       => 'DrI8v9QAHPiPSpM9qfDYvMqrLj3kNV2HiQ0cZOWVUECmJcGqNSBqEiU9V1lArSRvfEUcT2XMSHHMR/WuiUfvrA=='
  }

Limitations

At the Moment, only windows 7 and windows 10 are supported.