From cc7f06d8762c4a86211ec5d62bbbf3fc0ef53c0c Mon Sep 17 00:00:00 2001 From: Jenkins Server Date: Tue, 14 Apr 2026 17:02:59 +0200 Subject: [PATCH] Recommit for updates in build 39 --- doc/file.README.html | 26 ++++++++++++-- doc/index.html | 26 ++++++++++++-- ...id_ssh_3A_3Acustom_3A_3Acustom_config.html | 36 ++++++++++++------- 3 files changed, 69 insertions(+), 19 deletions(-) diff --git a/doc/file.README.html b/doc/file.README.html index 011ce0b..407b1fc 100644 --- a/doc/file.README.html +++ b/doc/file.README.html @@ -70,6 +70,8 @@
  • Features

  • +

    Adding custom configurations

    +
  • Support

  • Parameter Inheritance

    @@ -104,9 +106,27 @@

    (optional) manage firewall

  • -
    -

    ToDo: Define for custom drop-in configurations

    -
    +

    Adding custom configurations

    + +

    Custom configuration files live in /etc/ssh/sshd_config.d/. IN order to create a custom config file, add a stanza like this in your control repo:

    + +
    confdroid_ssh::custom::custom_config { '30-my-custom-rule':
    +  config_name    => '30-custom-rule',
    +  config_content => ['PasswordAuthentication no'],
    +}
    +
    + +

    This will create a file /etc/ssh/sshd_config.d/30-custom-rule.conf with this content:

    + +
    ###############################################################################
    +##### DO NOT EDIT THIS FILE MANUALLY                                          #
    +##### This file is managed by Puppet. Any changes to this file will be        #
    +##### overwritten. Update the Puppet define input instead.                    #
    +###############################################################################
    +PasswordAuthentication no
    +
    + +

    Note that the value for config_content has to be an array, even if only one key pair is in there. This field is designed to hold multiple values, which create one line in the config file each.

    Support

    -
    -

    ToDo: Define for custom drop-in configurations

    -
    +

    Adding custom configurations

    + +

    Custom configuration files live in /etc/ssh/sshd_config.d/. IN order to create a custom config file, add a stanza like this in your control repo:

    + +
    confdroid_ssh::custom::custom_config { '30-my-custom-rule':
    +  config_name    => '30-custom-rule',
    +  config_content => ['PasswordAuthentication no'],
    +}
    +
    + +

    This will create a file /etc/ssh/sshd_config.d/30-custom-rule.conf with this content:

    + +
    ###############################################################################
    +##### DO NOT EDIT THIS FILE MANUALLY                                          #
    +##### This file is managed by Puppet. Any changes to this file will be        #
    +##### overwritten. Update the Puppet define input instead.                    #
    +###############################################################################
    +PasswordAuthentication no
    +
    + +

    Note that the value for config_content has to be an array, even if only one key pair is in there. This field is designed to hold multiple values, which create one line in the config file each.

    Support