-
Notifications
You must be signed in to change notification settings - Fork 0
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
Change root password from emtpy to something reasonable #77
Conversation
Build/start.sh
Outdated
# Set default root password | ||
#cat <<EOT >> ${LOCALCONF} | ||
echo "inherit extrausers" >> ${LOCALCONF} | ||
echo "EXTRA_USERS_PARAMS = \"usermod -P M15+y50M8ackd00r root\"" >> ${LOCALCONF} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the initial password should be simple, like every live media or router. It would be up to the user to change it when they first log in.
I suggest usermod -P root root
or usermod -P pass root
instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was thinking of providing us a backdoor for YVR05 - I realize that it should not be merged into the public repo then - we can do something like:
usermod -P root root
in the public repo if we want, yes
Build/start.sh
Outdated
@@ -52,6 +52,12 @@ MACHINE_FEATURES_append = " docker" | |||
DISTRO_FEATURES_append = " virtualization" | |||
EOT | |||
|
|||
# Set default root password | |||
#cat <<EOT >> ${LOCALCONF} | |||
echo "inherit extrausers" >> ${LOCALCONF} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It needs to be echo "INHERIT += \"extrausers\" >> ${LOCALCONF}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Modified it to:
INHERIT += "extrausers"
EXTRA_USERS_PARAMS = "usermod -P root root"
fixed INHERIT line
setting default password to "root"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Set a default user password