vm-ansible/roles/backuphost/tasks/main.yaml

63 lines
1.2 KiB
YAML
Raw Normal View History

2022-04-16 20:55:19 +02:00
---
- name: "Add backup user"
ansible.builtin.user:
name: backup
comment: Backup user
shell: /bin/bash
- name: "Dsiable service user"
ansible.builtin.user:
name: service-user
state: present
password_lock: true
shell: "/sbin/nologin"
2022-04-16 21:00:08 +02:00
- name: Undefine AllowUsers
lineinfile:
state: absent
path: /etc/ssh/sshd_config
line: "AllowUsers tormakris ansible service-user"
- name: Check if AllowUsers is defined
lineinfile:
state: absent
path: /etc/ssh/sshd_config
regexp: "^AllowUsers"
check_mode: true
changed_when: false
register: checkallowusers
- name: Define AllowUsers if undefined
lineinfile:
state: present
path: /etc/ssh/sshd_config
line: "AllowUsers tormakris ansible backup"
when: checkallowusers.found == 0
2022-04-16 21:03:00 +02:00
- name: "Restart sshd"
service:
name: sshd
2022-04-16 21:05:42 +02:00
state: restarted
2022-04-16 21:17:11 +02:00
2022-04-16 21:20:11 +02:00
- name: Create .ssh directory of backup user
file:
path: /home/backup/.ssh
state: directory
2022-04-16 21:17:11 +02:00
- name: Copy authorized_keys
copy:
src: authorized_keys
dest: /home/backup/.ssh/authorized_keys
mode: 0600
owner: backup
group: backup
- name: Copy ssh config
copy:
src: ssh_config
dest: /home/backup/.ssh/config
mode: 0600
owner: backup
group: backup
2022-04-16 20:55:19 +02:00
...