--- # Install the SSL certificate and private key under /p4/ssl. # Shared by the install path (ssl.yml), the broker installer, and cert.yml. - name: "Copy certificate.txt to ssl directory" ansible.builtin.copy: src: "./certificate.txt" dest: "/p4/ssl" mode: '0600' owner: "{{ perforce_user }}" group: "{{ perforce_group }}" - name: "Copy privatekey.txt to ssl directory" ansible.builtin.copy: src: "./privatekey.txt" dest: "/p4/ssl" mode: '0600' owner: "{{ perforce_user }}" group: "{{ perforce_group }}"