bitwarden

This commit is contained in:
jaydee
2024-12-11 23:10:40 +01:00
parent 43dc4a8009
commit 44822bd37b
7 changed files with 91 additions and 146 deletions

35
roles/ssh_banner/tasks/main.yml Executable file
View File

@ -0,0 +1,35 @@
- block:
- name: Install packages
ansible.builtin.apt:
name:
- figlet
- toilet
- name: Create Banner
ansible.builtin.command: |
figlet -c {{ (inventory_hostname|split('.'))[0] }} -f slant
register: logo
- name: Creating a file with content
copy:
dest: "/etc/banner"
content: |
{{ logo.stdout }}
- name: Reconfigure sshd
ansible.builtin.lineinfile:
path: /etc/ssh/sshd_config
regexp: "^Banner.* "
line: "Banner /etc/banner"
- name: Reconfigure sshd
ansible.builtin.lineinfile:
path: /etc/ssh/sshd_config
regexp: "^#PrintLastLog.* "
line: "PrintLastLog no"
- name: sshd
ansible.builtin.service:
name: ssh.service
state: restarted
become: true