From 59620eff682d3d45539680fddf3ab26fd97321d2 Mon Sep 17 00:00:00 2001 From: vincent Date: Tue, 20 Apr 2021 10:18:56 +0200 Subject: [PATCH] modify ssh key management --- defaults/main.yml | 7 +++++++ tasks/main.yml | 2 +- tasks/ssh.yml | 43 ++++++++++++++++++++----------------------- 3 files changed, 28 insertions(+), 24 deletions(-) diff --git a/defaults/main.yml b/defaults/main.yml index cde5179..dc1b3f3 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -95,3 +95,10 @@ system_user: [] #group: ezfef system_group: [] keystodeploy: [] + #- name: toto + # user: toto + # ssjkey: lrlrl +privatekeytodeploy: [] + #- user: root + # keyfile: /root/.ssh/id_rsa + # privatekey: {{ vault_privatekey }} diff --git a/tasks/main.yml b/tasks/main.yml index e927fa0..6e61f3a 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,9 +1,9 @@ #- include_tasks: hostname.yml -- include_tasks : ssh.yml - include_tasks: hostname.yml - include_tasks: locales.yml - include_tasks: time.yml - include_tasks: usergroup.yml +- include_tasks : ssh.yml - include_tasks: pacman.yml when: ansible_facts['os_family'] == "Archlinux" - include_tasks: depot_debian.yml diff --git a/tasks/ssh.yml b/tasks/ssh.yml index e7eb000..d3d0753 100644 --- a/tasks/ssh.yml +++ b/tasks/ssh.yml @@ -1,36 +1,33 @@ -- name: copy gitea key for user - copy: - dest: /home/{{user.name}}/.ssh/ # required. Remote absolute path where the file should be copied to. If I(src) is a directory, this must be a directory too. If I(dest) is a nonexistent path and if either I(dest) ends with "/" or I(src) is a directory, I(dest) is created. If I(src) and I(dest) are files, the parent directory of I(dest) isn't created: the task fails if it doesn't already exist. - src: "ssh/{{item}}" # not required. Local path to a file to copy to the remote server; can be absolute or relative. If path is a directory, it is copied recursively. In this case, if path ends with "/", only inside contents of that directory are copied to destination. Otherwise, if it does not end with "/", the directory itself with all contents is copied. This behavior is similar to Rsync. - force: yes # not required. the default is C(yes), which will replace the remote file when contents are different than the source. If C(no), the file will only be transferred if the destination does not exist. - remote_src: no # not required. If C(no), it will search for I(src) at originating/master machine.,If C(yes) it will go to the remote/target machine for the I(src). Default is C(no).,Currently I(remote_src) does not support recursive copying.,I(remote_src) only works with C(mode=preserve) as of version 2.6. - mode: "600" # not required. Mode the file or directory should be. For those used to I(/usr/bin/chmod) remember that modes are actually octal numbers. You must either add a leading zero so that Ansible's YAML parser knows it is an octal number (like C(0644) or C(01777)) or quote it (like C('644') or C('1777')) so Ansible receives a string and can do its own conversion from string into number. Giving Ansible a number without following one of these rules will end up with a decimal number which will have unexpected results. As of version 1.8, the mode may be specified as a symbolic mode (for example, C(u+rwx) or C(u=rw,g=r,o=r)). As of version 2.3, the mode may also be the special string C(preserve). C(preserve) means that the file will be given the same permissions as the source file. - selevel: s0 # not required. Level part of the SELinux file context. This is the MLS/MCS attribute, sometimes known as the C(range). C(_default) feature works as for I(seuser). - owner: "{{user.name}}" # not required. Name of the user that should own the file/directory, as would be fed to I(chown). - with_items: - - id_gitea - - gitea.pub - - config - -- name: copy gitea key for root +- name: copy ssh config for user become: yes copy: - dest: /root/.ssh/ # required. Remote absolute path where the file should be copied to. If I(src) is a directory, this must be a directory too. If I(dest) is a nonexistent path and if either I(dest) ends with "/" or I(src) is a directory, I(dest) is created. If I(src) and I(dest) are files, the parent directory of I(dest) isn't created: the task fails if it doesn't already exist. - src: "ssh/{{item}}" # not required. Local path to a file to copy to the remote server; can be absolute or relative. If path is a directory, it is copied recursively. In this case, if path ends with "/", only inside contents of that directory are copied to destination. Otherwise, if it does not end with "/", the directory itself with all contents is copied. This behavior is similar to Rsync. + dest: /home/{{item}}/.ssh/ # required. Remote absolute path where the file should be copied to. If I(src) is a directory, this must be a directory too. If I(dest) is a nonexistent path and if either I(dest) ends with "/" or I(src) is a directory, I(dest) is created. If I(src) and I(dest) are files, the parent directory of I(dest) isn't created: the task fails if it doesn't already exist. + src: "ssh/config" # not required. Local path to a file to copy to the remote server; can be absolute or relative. If path is a directory, it is copied recursively. In this case, if path ends with "/", only inside contents of that directory are copied to destination. Otherwise, if it does not end with "/", the directory itself with all contents is copied. This behavior is similar to Rsync. force: yes # not required. the default is C(yes), which will replace the remote file when contents are different than the source. If C(no), the file will only be transferred if the destination does not exist. remote_src: no # not required. If C(no), it will search for I(src) at originating/master machine.,If C(yes) it will go to the remote/target machine for the I(src). Default is C(no).,Currently I(remote_src) does not support recursive copying.,I(remote_src) only works with C(mode=preserve) as of version 2.6. mode: "600" # not required. Mode the file or directory should be. For those used to I(/usr/bin/chmod) remember that modes are actually octal numbers. You must either add a leading zero so that Ansible's YAML parser knows it is an octal number (like C(0644) or C(01777)) or quote it (like C('644') or C('1777')) so Ansible receives a string and can do its own conversion from string into number. Giving Ansible a number without following one of these rules will end up with a decimal number which will have unexpected results. As of version 1.8, the mode may be specified as a symbolic mode (for example, C(u+rwx) or C(u=rw,g=r,o=r)). As of version 2.3, the mode may also be the special string C(preserve). C(preserve) means that the file will be given the same permissions as the source file. selevel: s0 # not required. Level part of the SELinux file context. This is the MLS/MCS attribute, sometimes known as the C(range). C(_default) feature works as for I(seuser). + owner: "{{item}}" # not required. Name of the user that should own the file/directory, as would be fed to I(chown). with_items: - - id_gitea - - gitea.pub - - config + - "{{user.name}}" + - root + +- name: Install ssh private key + become: yes + copy: + content: "{{ item.privatekey }}" + dest: "{{ item.keyfile }}" + mode: 0600 + owner: "{{item.user}}" + with_items: "{{privatekeytodeploy}}" - name: Deploy SSH-Keys to remote host authorized_key: - user: "{{user.name}}" - key: "{{ keystodeploy|map(attribute='sshkey')|join('\n') }}" - exclusive: true + user: "{{item.user}}" + key: "{{item.sshkey}}" + exclusive: no + with_items: "{{keystodeploy}}" + become: yes