2019-11-10 17:05:01 +00:00
|
|
|
---
|
2019-11-12 10:00:45 +00:00
|
|
|
- name: Enable xdm
|
|
|
|
become: true
|
2021-02-19 20:32:22 +00:00
|
|
|
ansible.builtin.lineinfile:
|
2019-11-12 10:00:45 +00:00
|
|
|
path: /etc/rc.conf
|
|
|
|
regexp: ^xdm=.*
|
|
|
|
line: xdm=YES
|
2020-06-11 15:36:39 +00:00
|
|
|
- name: Copy dbus service
|
|
|
|
become: true
|
2021-02-19 20:32:22 +00:00
|
|
|
ansible.builtin.copy:
|
2020-06-11 15:36:39 +00:00
|
|
|
src: /usr/pkg/share/examples/rc.d/dbus
|
|
|
|
dest: /etc/rc.d/dbus
|
|
|
|
remote_src: yes
|
|
|
|
- name: Enable dbus
|
|
|
|
become: true
|
2021-02-19 20:32:22 +00:00
|
|
|
ansible.builtin.lineinfile:
|
2020-06-11 15:36:39 +00:00
|
|
|
path: /etc/rc.conf
|
|
|
|
regexp: ^dbus=.*
|
|
|
|
line: dbus=YES
|