Enable dbus on NetBSD
This commit is contained in:
parent
6f8f904cf8
commit
3003face74
1 changed files with 12 additions and 0 deletions
|
@ -5,3 +5,15 @@
|
||||||
path: /etc/rc.conf
|
path: /etc/rc.conf
|
||||||
regexp: ^xdm=.*
|
regexp: ^xdm=.*
|
||||||
line: xdm=YES
|
line: xdm=YES
|
||||||
|
- name: Copy dbus service
|
||||||
|
become: true
|
||||||
|
copy:
|
||||||
|
src: /usr/pkg/share/examples/rc.d/dbus
|
||||||
|
dest: /etc/rc.d/dbus
|
||||||
|
remote_src: yes
|
||||||
|
- name: Enable dbus
|
||||||
|
become: true
|
||||||
|
lineinfile:
|
||||||
|
path: /etc/rc.conf
|
||||||
|
regexp: ^dbus=.*
|
||||||
|
line: dbus=YES
|
||||||
|
|
Loading…
Add table
Reference in a new issue