ajout playbook

This commit is contained in:
johan largy 2022-11-24 09:02:00 +00:00
parent 426327edfc
commit ab2b7ca6e3
6 changed files with 67 additions and 0 deletions

View File

@ -0,0 +1,15 @@
---
- hosts: all
tasks:
- name: activer UFW
community.general.ufw:
state: enabled
policy: allow
- name: access port 22
community.general.ufw:
rule: allow
port: '22'
proto: ssh

View File

@ -0,0 +1,2 @@
[adm]
srv

View File

@ -0,0 +1,13 @@
---
- hosts: all
tasks:
- name: Creation fichier /etc/resolv.conf
copy:
dest: "/etc/resolv.conf"
content: |
search sio.lan
domain sio.lan
nameserver 10.121.38.7
nameserver 10.121.38.8

View File

@ -0,0 +1,13 @@
---
- name: mon playbook
hosts: srv
tasks:
- name: Remove wpasupplicant
ansible.builtin.package:
name: "wpasupplicant"
state: absent
- name: Remove rpcbind
ansible.builtin.package:
name: "rpcbind"
state: absent

View File

@ -0,0 +1,9 @@
---
- hosts: all
tasks:
- replace:
path: /etc/ssh/sshd_config
regexp: 'PermitRootLogin yes'
replace: 'PermitRootLogin prohibit-password'
backup: yes

View File

@ -0,0 +1,15 @@
---
- name: mon playbook
hosts: srv
tasks:
- name: création du user sioadm
user:
name: sioadm
state: present
shell: /bin/bash
generate_ssh_key: yes
uid: 1200
groups: sudo
append: yes
password: "{{ 'sioadm' | password_hash('sha512')}}"