Forge Home

s3cmd

Install S3cmd - Command line tool for managing Amazon S3 and CloudFront services

8,365 downloads

8,365 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.

Support the Puppet Community by contributing to this module

You are welcome to contribute to this module by suggesting new features, currency updates, or fixes. Every contribution is valuable to help ensure that the module remains compatible with the latest Puppet versions and continues to meet community needs. Complete the following steps:

  1. Review the module’s contribution guidelines and any licenses. Ensure that your planned contribution aligns with the author’s standards and any legal requirements.
  2. Fork the repository on GitHub, make changes on a branch of your fork, and submit a pull request. The pull request must clearly document your proposed change.

For questions about updating the module, contact the module’s author.

Version information

  • 0.0.1 (latest)
released Sep 4th 2015
This version is compatible with:
  • ,

Start using this module

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

Add this module to your Puppetfile:

mod 'netflower-s3cmd', '0.0.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add netflower-s3cmd
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install netflower-s3cmd --version 0.0.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

Documentation

netflower/s3cmd — version 0.0.1 Sep 4th 2015

S3cmd

Build Status

Puppet module to install a newer version of S3cmd, the command line tool for managing Amazon S3 and CloudFront services. Most distributions package only older versions and this module downloads a specific release from GitHub.

Usage

Include the s3cmd class in your manifest to install it.

include s3cmd

If you not set any parameters, s3cmd will be installed with its default configuration.

Here is an example declaring the class with the full list of available parameters and their defaults:

class { 's3cmd':
  $install_bin = '/usr/local/bin',
  $install_dir = '/usr/local/share',
  $temp_dir    = '/tmp',
  $version     = 'v1.5.2',
}