workstation/roles/netbsd/tasks/console.yml

14 lines
343 B
YAML
Raw Normal View History

2019-11-22 15:53:09 +00:00
---
- name: Disable getty on /dev/console
become: true
lineinfile:
path: /etc/ttys
regexp: ^console\s+
line: 'console "/usr/libexec/getty Pc" vt100 off secure'
- name: Enable getty on /dev/ttyE0
become: true
lineinfile:
path: /etc/ttys
regexp: ^ttyE0\s+
line: 'ttyE0 "/usr/libexec/getty Pc" wsvt25 on secure'