Allow root logins from localhost

In order to have ansible be able to ssh in to itself, we need to enable
localhost ssh logins.

Change-Id: Iff9d7d72c4ca7848aa49a55d75ee5a2fdd313761
This commit is contained in:
Monty Taylor 2016-05-03 08:25:16 -05:00
parent ee2fc59182
commit b9370c3cea
No known key found for this signature in database
GPG Key ID: 3390DB68041A12F0
1 changed files with 3 additions and 0 deletions

View File

@ -88,3 +88,6 @@ UsePAM yes
# allow ansible connections from puppetmaster host
Match host <%= @trusted_ssh_source %>
PermitRootLogin without-password
# allow ansible connections from localhost
Match host localhost
PermitRootLogin without-password