Forge Home

keepass

Install and manage the application Keepass

8,387 downloads

7,789 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.1.1 (latest)
  • 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-keepass', '0.1.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

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

Manually install this module globally with Puppet module tool:

puppet module install dermac-keepass --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

Documentation

dermac/keepass — version 0.1.1 Aug 3rd 2017

KeePass 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 keepass
  4. Limitations

Overview

The keepass-module installs the application KeePass and creates the global configuration.

Module Description

With the keepass-module you can install and manage the application KeePass by downloading the given link and run the installer in silent mode. This happens only if the installed version is older (or not present) than the version that should be installed.

The global configuration creates a central configuration for all users. You can decide if let the user override these settings or not.

Setup

What keepass affects

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

Setup Requirements

The keepass-module uses the puppet-download_file module

Beginning with keepass

for a simple keepass-installation use:

    class { "keepass" :
    }

To install a specific version of keepass on Windows:

    class { "keepass" :
      package_version => '2.36',
      download_link => 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36-Setup.exe',
    }

To disable the global update-check:

    class { "keepass" :
      application_start_checkforupdate => false,
    }

To disable the global update-check and deny the user to change the global options:

    class { "keepass" :
      meta_preferuserconfiguration     => false,
      application_start_checkforupdate => false,
    }

Limitations

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