Puppet Class: accounts::user::defaults

Defined in:
manifests/user/defaults.pp

Summary

Load some user defaults from hiera data.

Overview

Parameters:

  • home_template (Stdlib::AbsolutePath) (defaults to: '/home/%s')

    The sprintf template used to determine a user’s home directory.

  • locked_shell (Stdlib::AbsolutePath) (defaults to: '/sbin/nologin')

    The shell assigned to locked user accounts.

  • root_home (Stdlib::AbsolutePath) (defaults to: '/root')

    The home directory of the root user.



13
14
15
16
17
18
19
# File 'manifests/user/defaults.pp', line 13

class accounts::user::defaults (
  Stdlib::AbsolutePath      $home_template = '/home/%s',
  Stdlib::AbsolutePath      $locked_shell = '/sbin/nologin',
  Stdlib::AbsolutePath      $root_home = '/root',
) {
  # Nothing to see here; move along.
}