Merge pull request #2198 from jhoreman/adding-password-auth-rp

setting password auth to true through generator resources
This commit is contained in:
Ben Vesel 2022-06-23 15:09:33 -04:00 коммит произвёл GitHub
Родитель bf87bb8cee 627431f721
Коммит 562d2612e3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 10 добавлений и 4 удалений

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -644,6 +644,9 @@ for scan in baseline clamav software; do
/usr/local/bin/azsecd config -s $scan -d P1D
done
# We need to manually set PasswordAuthentication to true in order for the VMSS Access JIT to work
sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config
restorecon -RF /var/log/*
(sleep 30; reboot) &

Просмотреть файл

@ -1071,6 +1071,9 @@ for scan in baseline clamav software; do
/usr/local/bin/azsecd config -s $scan -d P1D
done
# We need to manually set PasswordAuthentication to true in order for the VMSS Access JIT to work
sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config
restorecon -RF /var/log/*
(sleep 30; reboot) &
`))