├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── defaults └── main.yml ├── handlers └── main.yml ├── library └── win_sshd_config.ps1 ├── meta └── main.yml ├── tasks ├── download.yml ├── main.yml ├── pubkeys.yml ├── service.yml └── sshd_config.yml └── tests ├── Vagrantfile ├── ansible.cfg ├── cleanup.yml ├── client.yml ├── custom_vars.yml ├── defaults.yml ├── filter_plugins └── unquote.py ├── inventory.ini └── main.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /library/win_sshd_config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/library/win_sshd_config.ps1 -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/meta/main.yml -------------------------------------------------------------------------------- /tasks/download.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/tasks/download.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/pubkeys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/tasks/pubkeys.yml -------------------------------------------------------------------------------- /tasks/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/tasks/service.yml -------------------------------------------------------------------------------- /tasks/sshd_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/tasks/sshd_config.yml -------------------------------------------------------------------------------- /tests/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/tests/Vagrantfile -------------------------------------------------------------------------------- /tests/ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | retry_files_enabled = False 3 | -------------------------------------------------------------------------------- /tests/cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/tests/cleanup.yml -------------------------------------------------------------------------------- /tests/client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/tests/client.yml -------------------------------------------------------------------------------- /tests/custom_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/tests/custom_vars.yml -------------------------------------------------------------------------------- /tests/defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/tests/defaults.yml -------------------------------------------------------------------------------- /tests/filter_plugins/unquote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/tests/filter_plugins/unquote.py -------------------------------------------------------------------------------- /tests/inventory.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/tests/inventory.ini -------------------------------------------------------------------------------- /tests/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/ansible-role-win_openssh/HEAD/tests/main.yml --------------------------------------------------------------------------------