Forge Home

i2pd

Install, configure and run an i2pd daemon.

288 downloads

288 latest version

2.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

  • 1.0.5 (latest)
released Aug 25th 2022
This version is compatible with:
  • Puppet Enterprise 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x
  • Puppet >= 7.18.0 < 8.0.0
  • ,

Start using this module

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

Add this module to your Puppetfile:

mod 'Enucatl-i2pd', '1.0.5'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add Enucatl-i2pd
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install Enucatl-i2pd --version 1.0.5

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

Enucatl/i2pd — version 1.0.5 Aug 25th 2022

i2pd

Table of Contents

  1. Description
  2. Setup - The basics of getting started with i2pd
  3. Usage - Configuration options and additional functionality
  4. Development - Guide for contributing to the module

Description

Install, configure and run an i2pd daemon.

Setup

What i2pd affects

The official repository from repo.i2pd.xyz will be added to apt sources on Debian family.

Setup Requirements

If not on Debian, you'll have to add the repository on your own.

Beginning with i2pd

Usage

Easiest with Hiera, create a hash with your i2pd.conf. Section titles are keys, values are an inner hash of actual key-value pairs inside each section.

The opening "global" section of the i2pd.conf file is in the special key global, but that's not output to the file.

classes:
  - i2pd

i2pd::install::version: 'latest'
i2pd::daemon::base::user: 'i2pd'
i2pd::daemon::base::group: 'i2pd'
i2pd::daemon::base::config_file: '/etc/i2pd/i2pd.conf'
i2pd::daemon::base::config:
  global:
    log: 'file'
    ipv4: true
    ipv6: false
  http:
    address: '127.0.0.1'
    port: 7070
  httpproxy:
    address: '127.0.0.1'
    port: 4444
  socksproxy:
    address: '127.0.0.1'
    port: 4447
  sam:
    enabled: true
  reseed:
    verify: true

Will result in a /etc/i2pd/i2pd.conf file below. See the i2pd docs for more options.

## File managed by Puppet

## See https://i2pd.readthedocs.io/en/latest/user-guide/configuration/
## for more options you can use in this file.


log = file
ipv4 = true
ipv6 = false

[http]
address = 127.0.0.1
port = 7070

[httpproxy]
address = 127.0.0.1
port = 4444

[socksproxy]
address = 127.0.0.1
port = 4447

[sam]
enabled = true

[reseed]
verify = true

Development

Send me a pull request on github if you want to contribute.