Forge Home

sevenzip

Installs the application 7-Zip

8,841 downloads

7,804 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 Jun 27th 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.1.1'
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.1.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: 7-zip

Documentation

dermac/sevenzip — version 0.1.1 Jun 27th 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 the application by downloading the given link and runs the installer in silent mode. This happens only if the installed version is older (or not present) than the version that should be installed

Setup

What sevenzip affects

The sevenzip-module downloads the installation-file to the temp-directory of the user running the puppet-agent.

Setup Requirements

The sevenzip-module uses the puppet-download_file module

Beginning with sevenzip

for a simple sevenzip-installation use:

    class { "sevenzip" :
    }

To install a specific version of sevenzip on Windows in the msi-format:

    class { "sevenzip" :
      package_version => '16.04',
      download_link => 'http://7-zip.org/a/7z1604-x64.msi',
    }

To install a specific version of sevenzip on Windows in the exe-format:

    class { "sevenzip" :
      package_version => '16.04',
      download_link => 'http://7-zip.org/a/7z1604-x64.exe',
    }

Limitations

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