removed deprecated sshd config option, added setting for git cred caching.

This commit is contained in:
2023-08-24 19:02:10 +00:00
parent 41dbd31664
commit 9028f6d3c0
2 changed files with 10 additions and 1 deletions
+10
View File
@@ -38,6 +38,16 @@ case $set_branch in
;;
esac
read -p 'Enable git credential helper to cache? [y/N]: ' set_cache
case $set_cache in
[Yy]* )
git config --global credential.helper cache
;;
* )
echo 'Skipping'
;;
esac
# ----------------------------------------------------------
echo "----- User Groups (requires sudo) -------------------"
-1
View File
@@ -3,7 +3,6 @@
AuthenticationMethods publickey
LogLevel VERBOSE
PermitRootLogin no
UsePrivilegeSeparation sandbox
PasswordAuthentication no
ChallengeResponseAuthentication no