DsAnsibleGitea
This commit is contained in:
parent
0904bce7ad
commit
8b3b3a2ad7
2
ct-ansible/hosts
Normal file
2
ct-ansible/hosts
Normal file
@ -0,0 +1,2 @@
|
||||
[hotes]
|
||||
sioadm
|
39
ct-ansible/playbook.yml
Normal file
39
ct-ansible/playbook.yml
Normal file
@ -0,0 +1,39 @@
|
||||
---
|
||||
- hosts: hotes
|
||||
become: yes
|
||||
become_user: root
|
||||
tasks:
|
||||
|
||||
- name: création de sioadm
|
||||
user:
|
||||
name:sioadm
|
||||
state:present
|
||||
generate_ssh_key:yes
|
||||
groups:sudo
|
||||
append:yes
|
||||
password:"{{ 'sioadm' | password_hash('sha512') }}"
|
||||
password_lock:yes
|
||||
|
||||
- name: desinstaller le paquet wpasupplicant
|
||||
apt:
|
||||
name: wpasupplicant
|
||||
state: absent
|
||||
|
||||
- name: desinstaller le paquet rpcbind
|
||||
apt:
|
||||
name: rpcbind
|
||||
state: absent
|
||||
|
||||
- name: ecriture fichier resolv.conf
|
||||
template:
|
||||
src: erlov.conf
|
||||
dest: "/etc/resolv.conf"
|
||||
|
||||
- name: configuration sshd_config
|
||||
replace:
|
||||
dest: /etc/ssh/sshd_config
|
||||
regexp: '^PermitRootLogin (yes|without-password)'
|
||||
regexp: '^PermitRootLogin (yes|without-password|prohibit-password)'
|
||||
replace: "PermitRootLogin no"
|
||||
notify: reload sshd
|
||||
when: evolinux_root_disable_ssh
|
4
ct-ansible/resolv.conf
Normal file
4
ct-ansible/resolv.conf
Normal file
@ -0,0 +1,4 @@
|
||||
search sio.lan
|
||||
domain sio.lan
|
||||
nameserver 10.121.38.7
|
||||
nameserver 10.121.38.8
|
Loading…
x
Reference in New Issue
Block a user