bitwarden

This commit is contained in:
jaydee
2024-06-27 00:19:16 +02:00
parent 4d19b05594
commit 6e3ad23eec
6 changed files with 53 additions and 39 deletions

View File

@ -1,7 +1,11 @@
- hosts: omv
- hosts: datacenter
name: Enable WOL
become: true
tasks:
- name: Install ethtool
ansible.builtin.apt:
name: ethtool
state: present
- name: Display all interfaces name
debug:
var: ansible_facts.interfaces
@ -12,7 +16,7 @@
when: 'item.startswith("en")'
- name: Creating config
become: yes
become: true
ansible.builtin.copy:
dest: "/etc/systemd/system/wol.service"