evolinux-base: ensure dbus enabled and started
gitea/ansible-roles/pipeline/head This commit looks good Details

This commit is contained in:
William Hirigoyen 2022-12-19 17:05:45 +01:00
parent 144c723e87
commit 7005344a5b
2 changed files with 8 additions and 0 deletions

View File

@ -16,6 +16,8 @@ The **patch** part changes is incremented if multiple releases happen the same m
### Fixed
* evolinux-base: ensure dbus is started and enabled (not by default in the case of an offline netinst)
### Removed
### Security

View File

@ -4,6 +4,12 @@
name: dbus
state: present
- name: dbus is enabled and started
service:
name: dbus
state: started
enabled: true
- name: Set hostname "{{ evolinux_hostname }}"
hostname:
name: "{{ evolinux_hostname }}"