Tested with Travis CI
- Description
- Setup - The basics of getting started with bsdauth
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
This module manages the BSD authentication framework primarily found on
OpenBSD. It manages the /etc/login.conf configuration file containing all
of the login classes and installs any packages required for additional login
styles.
OpenBSD is supported using Puppet 4.4.0 or later.
To maintain the default /etc/login.conf content and login classes, use the
following:
include ::bsdauth
include ::bsdauth::authpf
include ::bsdauth::bgpd
include ::bsdauth::pbuild
include ::bsdauth::unboundTo override the default login classes, (you then must manage all of them):
class { '::bsdauth':
classes => {
'auth-defaults' => {
'capabilities' => [
'auth=yubikey,passwd',
],
'order' => '01',
},
...
},
}To add an additional login class:
include ::bsdauth
::bsdauth::class { 'example':
capabilities => [
'auth=yubikey,passwd',
'tc=default',
],
}To enable LDAP login support:
include ::bsdauth
include ::bsdauth::ldap
::bsdauth::ldap::class { 'ldap':
base_dn => 'dc=example,dc=com',
servers => [
{
'hostname' => '192.0.2.1',
},
],
}The reference documentation is generated with puppet-strings and the latest version of the documentation is hosted at https://bodgit.github.io/puppet-bsdauth/.
This module has been built on and tested against Puppet 4.4.0 and higher.
The module has been tested on:
- OpenBSD 6.2/6.3
The module has both rspec-puppet and beaker-rspec tests. Run them with:
$ bundle exec rake test
$ PUPPET_INSTALL_TYPE=agent PUPPET_INSTALL_VERSION=x.y.z bundle exec rake beaker:<nodeset>
Please log issues or pull requests at github.