18 lines
415 B
YAML
18 lines
415 B
YAML
---
|
|
- name: Install NetBSD GUI packages
|
|
become: true
|
|
pkgin:
|
|
name: firefox,motif,vim-motif,xlockmore-lite
|
|
state: present
|
|
- 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'
|