2019-11-10 17:05:01 +00:00
|
|
|
---
|
|
|
|
- name: Install NetBSD GUI packages
|
|
|
|
become: true
|
|
|
|
pkgin:
|
2019-11-12 12:13:13 +00:00
|
|
|
name: firefox,motif,rxvt-unicode,vim-motif,xlockmore-lite
|
2019-11-10 17:05:01 +00:00
|
|
|
state: present
|
2019-11-12 10:00:45 +00:00
|
|
|
- name: Enable xdm
|
|
|
|
become: true
|
|
|
|
lineinfile:
|
|
|
|
path: /etc/rc.conf
|
|
|
|
regexp: ^xdm=.*
|
|
|
|
line: xdm=YES
|
|
|
|
- name: Disable console getty
|
|
|
|
become: true
|
|
|
|
lineinfile:
|
|
|
|
path: /etc/ttys
|
|
|
|
regexp: ^console\s+
|
2019-11-12 10:03:59 +00:00
|
|
|
line: 'console "/usr/libexec/getty Pc" vt100 off secure'
|