workstation/roles/distro-gui/tasks/netbsd.yml

19 lines
406 B
YAML
Raw Normal View History

2019-11-10 17:05:01 +00:00
---
- name: Install NetBSD GUI packages
become: true
pkgin:
2019-11-12 09:54:02 +00:00
name: firefox,motif,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+
line: 'console "/usr/libexec/getty Pc" vt100 off secure'