diff options
-rw-r--r-- | roles/custom-config/tasks/main.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/custom-config/tasks/main.yml b/roles/custom-config/tasks/main.yml index ec55f0e..832a64a 100644 --- a/roles/custom-config/tasks/main.yml +++ b/roles/custom-config/tasks/main.yml @@ -104,6 +104,13 @@ mode: '0640' loop: "{{ users.stdout_lines }}" +- name: Enable SSH Subshell + ansible.builtin.lineinfile: + path: /etc/ssh/ssh_config + state: present + insertafter: EOF + line: 'EnableEscapeCommandline=yes' + - name: Create /srv/smb/ directory for payload population ansible.builtin.file: path: /srv/smb |