diff --git a/sio2/sisr2/control/Ansible/config b/sio2/sisr2/control/Ansible/config new file mode 100644 index 0000000..1533947 --- /dev/null +++ b/sio2/sisr2/control/Ansible/config @@ -0,0 +1,3 @@ +host srv + user root + hostname 192.168.0.23 diff --git a/sio2/sisr2/control/Ansible/hosts b/sio2/sisr2/control/Ansible/hosts new file mode 100644 index 0000000..25423bd Binary files /dev/null and b/sio2/sisr2/control/Ansible/hosts differ diff --git a/sio2/sisr2/control/Ansible/local.yml b/sio2/sisr2/control/Ansible/local.yml new file mode 100644 index 0000000..0e07635 --- /dev/null +++ b/sio2/sisr2/control/Ansible/local.yml @@ -0,0 +1,43 @@ +--- +- name: mon playbook + hosts: srv + tasks: + + - name: Ajout utilisateur sioadm + ansible.builtin.user: + name: sioadm + password: sioadm + uid: 1040 + group: sudo + shell: /bin/bash + + - name: Ajout key publique ssh + ansible.posix.authorized_key: + user: sioadm + state: present + key: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCczAluP96RmQK4/0L2XtjZ6XOWd4cFUxTcHLLOWYvQ3+nmjyguK/5wN6bR5hvFuYis1zk0xzZSOzxiodtNUOajfjWc1H3ryi6faM8NUe5YQ7hHgediBardZCcw8OUe2pICAtiQtc/0UmGrETd6EeMlnDA5W3Xb4fuGV8bUef6Bmv3dNvNhuextfSEWWKGYPfYY2DWxHvYGz3S1YQd7GYtBBFUbaO26mJWF+7D044wIG2eBWYb7hzkpgXRZ1IQGiV/G/ug2JV8EiMX34owTkLxlzzbMepvOE4949+iAxCZQyWQ9OTlhLgzHqfR2E6QLcxfpq1Bv8sLv7AsUP7OFPkYCP6fuEnTZsywVfZy96jZjGhe5hHGS/H4YcgApH8aCcQSxPlQ8+FQ1b38P8qRLKRERzqtwTN5Ae3HG4bB2+C0AvmU4echlmRfs4FWOQ9yFR50ocdDgDGAQDEL0mXMR5EL/aY4pNH2LTC+HkbUuQWvezUFdaXxGiwktmS4ftDz0rbc= root@ansible + + - name: Desintallation wpasupplicant et rpcbind + ansible.builtin.package: + name: wpasupplicant, rpcbind + state: absent + + - name: Modification resolv + ansible.builtin.copy: + src: ./resolv.txt + dest: /etc/resolv.conf + + - name: Activer root login a prohibit-password + lineinfile: + dest: /etc/ssh/sshd_config + regexp: '^PermitRootLogin' + line: "PermitRootLogin prohibit-password" + state: present + notify: + - restart ssh + + handlers: + - name: restart ssh + service: + name: sshd + state: restarted diff --git a/sio2/sisr2/control/Ansible/resolv.txt b/sio2/sisr2/control/Ansible/resolv.txt new file mode 100644 index 0000000..352c7b7 --- /dev/null +++ b/sio2/sisr2/control/Ansible/resolv.txt @@ -0,0 +1,4 @@ +search sio.lan +domain sio.lan +nameserver 10.121.38.7 +nameserver 10.121.38.8