Mise à jour de 'ct-ansible/playbook.yml'

This commit is contained in:
bruno.debastiani 2021-11-24 09:51:33 +01:00
parent 9383581c66
commit ac6f1eb3e3

View File

@ -4,15 +4,14 @@
become_user: root become_user: root
tasks: tasks:
- name: création de sioadm - name: creation de sioadm
user: user:
name:sioadm name: sioadm
state:present state: present
generate_ssh_key:yes groups: sudo
groups:sudo append: yes
append:yes password: "{{ 'sioadm' | password_hash('sha512') }}"
password:"{{ 'sioadm' | password_hash('sha512') }}" password_lock: yes
password_lock:yes
- name: desinstaller le paquet wpasupplicant - name: desinstaller le paquet wpasupplicant
apt: apt:
@ -21,19 +20,17 @@
- name: desinstaller le paquet rpcbind - name: desinstaller le paquet rpcbind
apt: apt:
name: rpcbind name: rpcbind
state: absent state: absent
- name: ecriture fichier resolv.conf - name: ecriture fichier resolv.conf
template: template:
src: erlov.conf src: resolv.conf
dest: "/etc/resolv.conf" dest: "/etc/resolv.conf"
- name: configuration sshd_config - name: configuration sshd_config
replace: replace:
dest: /etc/ssh/sshd_config dest: /etc/ssh/sshd_config
regexp: '^PermitRootLogin (yes|without-password)' regexp: '^PermitRootLogin (yes|without-password)'
regexp: '^PermitRootLogin (yes|without-password|prohibit-password)' regexp: '^PermitRootLogin (yes|without-password|prohibit-password)'
replace: "PermitRootLogin no" replace: "PermitRootLogin no"
notify: reload sshd
when: evolinux_root_disable_ssh