Puppet Class: st2::auth::pam
- Inherits:
- st2
- Defined in:
- manifests/auth/pam.pp
Summary
Auth class to configure and setup PAM authentication.Overview
Note:
This backend will NOT allow you to auth with PAM for the ‘root’ user. You will need to auth a non-root user on the Linux host.
TODO:
Need to configure st2auth service to run as root
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'manifests/auth/pam.pp', line 20
class st2::auth::pam(
$conf_file = $st2::conf_file,
) inherits st2 {
include st2::auth::common
# config
ini_setting { 'auth_backend':
ensure => present,
path => $conf_file,
section => 'auth',
setting => 'backend',
value => 'pam',
tag => 'st2::config',
}
ini_setting { 'auth_backend_kwargs':
ensure => present,
path => $conf_file,
section => 'auth',
setting => 'backend_kwargs',
value => '',
tag => 'st2::config',
}
# install package dependency
$_dep_pkgs = $facts['os']['family'] ? {
'Debian' => 'libpam0g',
'RedHat' => 'pam-devel',
default => undef,
}
ensure_packages($_dep_pkgs,
{
'ensure' => 'present',
})
# install the backend package
python::pip { 'st2-auth-backend-pam':
ensure => present,
pkgname => 'st2-auth-backend-pam',
url => 'git+https://github.com/StackStorm/st2-auth-backend-pam.git@master#egg=st2_auth_backend_pam',
owner => 'root',
virtualenv => '/opt/stackstorm/st2',
timeout => 1800,
}
# dependencies
Package<| tag == 'st2::server::packages' |>
-> Package[$_dep_pkgs]
-> Python::Pip['st2-auth-backend-pam']
~> Service['st2auth']
}
|