aboutsummaryrefslogtreecommitdiff
path: root/roles/ssh/tasks/main.yml
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2016-10-06 10:54:16 -0400
committerB Stack <bgstack15@gmail.com>2016-10-06 10:54:16 -0400
commit44b47fd6e17f8de9f0038d94eb9f6e198c003fab (patch)
treebf0c1bc525388972dee96ff68158b108748af484 /roles/ssh/tasks/main.yml
parentFixed filename export process in scrub.py (diff)
downloadansible01-44b47fd6e17f8de9f0038d94eb9f6e198c003fab.tar.gz
ansible01-44b47fd6e17f8de9f0038d94eb9f6e198c003fab.tar.bz2
ansible01-44b47fd6e17f8de9f0038d94eb9f6e198c003fab.zip
Fixed a few things, added ldap_certs stub
Diffstat (limited to 'roles/ssh/tasks/main.yml')
-rw-r--r--roles/ssh/tasks/main.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/ssh/tasks/main.yml b/roles/ssh/tasks/main.yml
index a526b4e..8bc88cd 100644
--- a/roles/ssh/tasks/main.yml
+++ b/roles/ssh/tasks/main.yml
@@ -12,7 +12,7 @@
include_vars: '{{ item }}'
with_first_found:
- files:
- - '../hosts/{{ ansible_fqdn }}.yml'
+ - 'roles/ssh/hosts/{{ ansible_fqdn }}.yml'
skip: true
- name: ssh_config conf
bgstack15