blob: f10af795ec15746476f965f11d2c3e22ed553ee1 (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/sh
# Welcome to Adélie Linux.
# This script changes local PAM configuration to allow null passwords.
# This way, the `live` user does not need a password.
sed -i 's/pam_unix.so$/pam_unix.so nullok_secure/' /etc/pam.d/base-auth
|