We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I see the following in stage1/01-sys-tweaks/00-run.sh:
stage1/01-sys-tweaks/00-run.sh
echo "pi:raspberry" | chpasswd echo "root:root" | chpasswd
Can these be moved out into the config file so that it would be easier to inject values from tools such as Ansible or Puppet?
config
Keep these commands in mind--useful to add a script for these for easy creation of a new user.
# /usr/sbin/adduser ${newuser} # /bin/mkdir --mode=700 /home/${newuser}/.ssh # /bin/chown ${newuser}:${newuser} /home/${newuser}/.ssh # /usr/bin/touch /home/${newuser}/.ssh/authorized_keys # /bin/chmod 0600 /home/${newuser}/.ssh/authorized_keys # /bin/chown ${newuser}:${newuser} /home/${newuser}/.ssh/authorized_keys # /bin/echo "${newuser} ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/${newuser}
Update README.md to capture this in the list of differences.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I see the following in
stage1/01-sys-tweaks/00-run.sh
:Can these be moved out into the
config
file so that it would be easier to inject values from tools such as Ansible or Puppet?Keep these commands in mind--useful to add a script for these for easy creation of a new user.
Update README.md to capture this in the list of differences.
The text was updated successfully, but these errors were encountered: