Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SEAPATH_COMMON.var: add instructions for password hash #130

Merged
merged 1 commit into from
Feb 21, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions srv_fai_config/class/SEAPATH_COMMON.var
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ UTC=yes
TIMEZONE=Europe/Paris
KEYMAP=fr-latin1

# the hash of the root password for the new installed linux system
# pw is "toto"
# The hash of the root password for the new installed Linux system.
# It can generated with the mkpasswd command. E.g. mkpasswd -m yescrypt
# Default passworkd is "toto".
ROOTPW='$y$j9T$s.szNr.QzTLk8h5qMYDpo0$YMaC8.04FilI/1AguyofvbV4FH1me6Nc7SHP4hyefZ2'

# errors in tasks greater than this value will cause the installation to stop
Expand All @@ -26,6 +27,7 @@ MAXPACKAGES=800

# a user account will be created
username=admin
# User password hash
USERPW='$y$j9T$s.szNr.QzTLk8h5qMYDpo0$YMaC8.04FilI/1AguyofvbV4FH1me6Nc7SHP4hyefZ2'
# a ansible user account will be created
usernameansible=ansible
Expand Down