forked from simp/pupmod-simp-pam
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(simp#140) Added parameters to control /etc/security/faillock.conf
Fixes simp#140
- Loading branch information
1 parent
d6dd52d
commit 1636c87
Showing
7 changed files
with
210 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<%-| | ||
Optional[Stdlib::Absolutepath] $dir, | ||
Boolean $audit, | ||
Boolean $silent, | ||
Boolean $no_log_info, | ||
Boolean $local_users_only, | ||
Boolean $nodelay, | ||
Optional[Integer[0]] $deny, | ||
Optional[Integer[0]] $fail_interval, | ||
Optional[Integer[0]] $unlock_time, | ||
Boolean $even_deny_root, | ||
Optional[Integer[0]] $root_unlock_time, | ||
Optional[String] $admin_group | ||
|-%> | ||
# This file is generated by Puppet | ||
# Any changes made to it will be overwritten. | ||
# | ||
<% if $dir { -%> | ||
dir=<%= $dir %> | ||
<% } -%> | ||
<% if $audit { -%> | ||
audit | ||
<% } -%> | ||
<% if $silent { -%> | ||
silent | ||
<% } -%> | ||
<% if $no_log_info { -%> | ||
no_log_info | ||
<% } -%> | ||
<% if $local_users_only { -%> | ||
local_users_only | ||
<% } -%> | ||
<% if $nodelay { -%> | ||
nodelay | ||
<% } -%> | ||
<% if $deny { -%> | ||
deny=<%= $deny %> | ||
<% } -%> | ||
<% if $fail_interval { -%> | ||
fail_interval=<%= $fail_interval %> | ||
<% } -%> | ||
<% if $unlock_time { -%> | ||
unlock_time=<%= $unlock_time %> | ||
<% } -%> | ||
<% if $even_deny_root { -%> | ||
even_deny_root | ||
<% } -%> | ||
<% if $root_unlock_time { -%> | ||
root_unlock_time=<%= $root_unlock_time %> | ||
<% } -%> | ||
<% if $admin_group { -%> | ||
admin_group=<%= $admin_group %> | ||
<% } -%> |