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

generate ssh key profile script #1861

Merged
merged 1 commit into from
Feb 27, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,19 @@ function add_localusers()
{% endfor %}
}

function gen_sshkey()
{
cat <<EOF >/etc/profile.d/gen_sshkey.sh
#!/bin/sh
if [ ! -f ~/.ssh/id_rsa.pub ] ; then
ssh-keygen -q -t rsa -N '' -f ~/.ssh/id_rsa <<<y >/dev/null 2>&1
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
chmod 644 ~/.ssh/authorized_keys
fi
EOF
chmod 644 /etc/profile.d/gen_sshkey.sh
}

rename_host

case {{ authentication.user_auth | default("ad") }} in
Expand All @@ -126,6 +139,8 @@ case {{ authentication.user_auth | default("ad") }} in
;;
esac

gen_sshkey

# Grant sudo for users in the azhop-localadmins group
echo "%{{ (usergroups | selectattr('gid', 'eq', 5002) | map(attribute='name'))[0] | default('azhop-localadmins', true) }} ALL=(ALL) NOPASSWD: ALL" | tee -a /etc/sudoers.d/azhop-localadmins

Expand Down