-
Notifications
You must be signed in to change notification settings - Fork 706
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e35c584
commit 4f1d6b3
Showing
3 changed files
with
100 additions
and
7 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
38 changes: 37 additions & 1 deletion
38
.../accounts-restrictions/password_storage/no_empty_passwords/tests/nullok_commented.pass.sh
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 |
---|---|---|
@@ -1,7 +1,43 @@ | ||
#!/bin/bash | ||
# platform = Oracle Linux 7,Red Hat Virtualization 4,multi_platform_fedora | ||
# platform = Oracle Linux 7,Red Hat Virtualization 4,multi_platform_fedora,multi_platform_ubuntu | ||
# packages = pam | ||
|
||
{{% if 'ubuntu' in product %}} | ||
config_file=/usr/share/pam-configs/tmp_unix | ||
|
||
cat << EOF > "$config_file" | ||
Name: Unix authentication | ||
Default: yes | ||
Priority: 256 | ||
Auth-Type: Primary | ||
Auth: | ||
[success=end default=ignore] pam_unix.so nullok try_first_pass | ||
Auth-Initial: | ||
[success=end default=ignore] pam_unix.so nullok | ||
Account-Type: Primary | ||
Account: | ||
[success=end new_authtok_reqd=done default=ignore] pam_unix.so | ||
Account-Initial: | ||
[success=end new_authtok_reqd=done default=ignore] pam_unix.so | ||
Session-Type: Additional | ||
Session: | ||
required pam_unix.so | ||
Session-Initial: | ||
required pam_unix.so | ||
Password-Type: Primary | ||
Password: | ||
[success=end default=ignore] pam_unix.so obscure use_authtok try_first_pass yescrypt # nullok | ||
Password-Initial: | ||
[success=end default=ignore] pam_unix.so obscure yescrypt # nullok | ||
EOF | ||
|
||
DEBIAN_FRONTEND=noninteractive pam-auth-update --enable tmp_unix | ||
|
||
rm "$config_file" | ||
|
||
{{% else %}} | ||
for pam_file in /etc/pam.d/system-auth /etc/pam.d/password-auth; do | ||
sed -i --follow-symlinks '/nullok/d' $pam_file | ||
echo "# auth sufficient pam_unix.so try_first_pass nullok" >> $pam_file | ||
done | ||
{{% endif %}} |
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