--- # test code for the authorized_key module # - (c) 2014, James Cammarata # - (c) 2021, Hideki Saito # This file is part of Ansible # # Ansible is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Ansible is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Ansible. If not, see . - name: Setup testing environment ansible.builtin.import_tasks: setup_steps.yml - name: Test for multiple keys handling ansible.builtin.import_tasks: multiple_keys.yml - name: Test for ssh-dss key handling ansible.builtin.import_tasks: ssh_dss.yml - name: Test for check mode ansible.builtin.import_tasks: check_mode.yml - name: Test for the management of comments with key ansible.builtin.import_tasks: comments.yml - name: Test for specifying key as a path ansible.builtin.import_tasks: check_path.yml - name: Test for permission denied files ansible.builtin.import_tasks: check_permissions.yml