evolinux-base: ensure dbus enabled and started
All checks were successful
gitea/ansible-roles/pipeline/head This commit looks good

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 ### Fixed
* evolinux-base: ensure dbus is started and enabled (not by default in the case of an offline netinst)
### Removed ### Removed
### Security ### Security

View file

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