diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-12-24 01:10:41 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-12-24 01:10:41 +0000 |
commit | 22849826bd39fc73f23eb953b587b02e53962e99 (patch) | |
tree | fc57bf14f277ae5e26a14757bcf7ec004ccd2cd2 | |
parent | 7cbd435ce58a7ffd4032eb76e0502e0ddaa987fc (diff) |
bugfix live session : minimum password legth should be longer than 7 chars according to new pam rules
-rwxr-xr-x | redcorelive-openrc.sh | 2 | ||||
-rwxr-xr-x | redcorelive-systemd.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/redcorelive-openrc.sh b/redcorelive-openrc.sh index e68818a..fd5a1ae 100755 --- a/redcorelive-openrc.sh +++ b/redcorelive-openrc.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -export local liveuser="redcore" +export local liveuser="redcorelive" checkroot() { if [[ "$(whoami)" != root ]] ; then diff --git a/redcorelive-systemd.sh b/redcorelive-systemd.sh index 34b618e..1fec608 100755 --- a/redcorelive-systemd.sh +++ b/redcorelive-systemd.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -export local liveuser="redcore" +export local liveuser="redcorelive" checkroot() { if [[ "$(whoami)" != root ]] ; then |