- ---
- - name: "00: Set default shell to ZSH"
- become: True
- ansible.builtin.command: "chsh -s /usr/bin/zsh {{ system_user }}"
- - name: "10: Copy SSH configuration"
- become: True
- ansible.builtin.copy:
- src: "../../files/config/sshd_config"
- dest: "/etc/ssh/sshd_config"
- owner: root
- group: root
- mode: '0644'
- notify: restart ssh
|