Forge Home

atom_editor

Installs the atom editor.

6,063 downloads

5,754 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.1 (latest)
  • 0.1.0
released Jul 5th 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-atom_editor', '0.1.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

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

Manually install this module globally with Puppet module tool:

puppet module install dermac-atom_editor --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: editor, ide, atom

Documentation

dermac/atom_editor — version 0.1.1 Jul 5th 2017

Atom-Editor 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 atom_editor
  4. Limitations

Overview

The atom_editor-module installs the Atom Editor

Module Description

The atom_editor-module installs the Atom Editor on Windows with the chocolatey-module in silent mode.

Setup

Setup Requirements

The atom_editor-module uses the chocolatey-chocolatey module

Beginning with atom_editor

for a simple atom_editor-installation use:

    class { "atom_editor" :
    }
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 atom_editor on Windows and override the maintainers checksum:

  class {atom_editor:
    package_ensure => '1.0.7',
    package_name   => ['atom'],
    prerelease     => false,
    checksum       => 'DrI8v9QAHPiPSpM9qfDYvMqrLj3kNV2HiQ0cZOWVUECmJcGqNSBqEiU9V1lArSRvfEUcT2XMSHHMR/WuiUfvrA=='
  }

Limitations

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