view modules/ssh/manifests/config_entry.pp @ 385:d9009f54eb23

Migrate to a fully-fledged SSH module This handles lots of the server path differences for us
author IBBoard <dev@ibboard.co.uk>
date Mon, 03 Jan 2022 17:05:54 +0000
parents
children
line wrap: on
line source

# == Define: ssh::config_entry
#
# Manage an entry in ~/.ssh/config for a particular user.  Lines model the lines
# in each Host block.
define ssh::config_entry (
  $owner,
  $group,
  $path,
  $host,
  $order  = '10',
  $ensure = 'present',
  $lines  = [],
) {

  # All lines including the host line.  This will be joined with "\n  " for
  # indentation.
  $entry = concat(["Host ${host}"], $lines)
  $content = join($entry, "\n")

  if ! defined(Concat[$path]) {
    concat { $path:
      ensure         => present,
      owner          => $owner,
      group          => $group,
      mode           => '0644',
      ensure_newline => true,
    }
  }

  concat::fragment { "${path} Host ${host}":
    target  => $path,
    content => $content,
    order   => $order,
    tag     => "${owner}_ssh_config",
  }
}