Files
confdroid_ssh/manifests/params.pp

23 lines
742 B
ObjectPascal
Raw Normal View History

2025-04-22 15:58:46 +02:00
## ssh_cd::params.pp
# Module name: ssh_cd
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class contains all class parameters for ssh_cd
# @param [Array] reqpackages packages to install
# @param [String] pkg_ensure version to install: 'present' or 'latest'
2025-04-22 15:58:46 +02:00
##############################################################################
class ssh_cd::params (
Array $reqpackages = ['openssh','openssh-clients','openssh-server'],
String $pkg_ensure = 'latest',
) {
$sshd_user = 'root'
$ssh_etc_path = '/etc/ssh'
$sshd_service = 'sshd'
$sshd_config_path = "${ssh_etc_path}/sshd_config"
$sshd_config_erb = 'ssh_cd/ssh_config.erb'
# includes must be last
include ssh_cd::main::config
}