lmn-client/roles/kerberize/tasks/main.yml
2019-11-29 15:47:45 +01:00

18 lines
542 B
YAML

- name: kerberize sshd server
lineinfile:
dest: /etc/ssh/sshd_config
line: "GSSAPIAuthentication yes"
insertafter: "#GSSAPIAuthentication no"
notify: "reload sshd"
- name: kerberize ssh client, authenticate
lineinfile:
dest: /etc/ssh/ssh_config
line: "GSSAPIAuthentication yes"
insertafter: "# GSSAPIAuthentication no"
- name: kerberize ssh client, delegate credentials
lineinfile:
dest: /etc/ssh/ssh_config
line: "GSSAPIDelegateCredentials yes"
insertafter: "# GSSAPIDelegateCredentials no"