diff options
author | binary <me@rgoncalves.se> | 2021-02-17 16:54:09 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2021-02-17 16:54:09 +0100 |
commit | e3a63f27b69b18b59ff61c563a31de8b7fbe8482 (patch) | |
tree | 9788e25e51654df8065dee2f5e273be951aa22db /roles/workstation/tasks/setup_openbsd.yml | |
parent | 473987f9e0ed2d6fe7585ea30634ed8d0a1dc721 (diff) | |
download | infrastructure-e3a63f27b69b18b59ff61c563a31de8b7fbe8482.tar.gz |
Add openbsd setup for workstation
Diffstat (limited to 'roles/workstation/tasks/setup_openbsd.yml')
-rw-r--r-- | roles/workstation/tasks/setup_openbsd.yml | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/roles/workstation/tasks/setup_openbsd.yml b/roles/workstation/tasks/setup_openbsd.yml deleted file mode 100644 index bf4fb6c..0000000 --- a/roles/workstation/tasks/setup_openbsd.yml +++ /dev/null @@ -1,43 +0,0 @@ - -# workstation ~~ roles/workstation/tasks/main.yml -# init openbsd based workstation - ---- - -- name: ensure wsconsctl config file exists - file: - path: /etc/wsconsctl.conf - owner: root - group: wheel - mode: 0644 - state: touch - -- name: wsconsctl screen default screenbrightness - lineinfile: - path: /etc/wsconsctl.conf - regexp: ^screen.brightness= - line: screen.brightness=80 - -- name: wsconsctl keyboard default acceleration - lineinfile: - path: /etc/wsconsctl.conf - regexp: ^keyboard.repeat.del1= - line: keyboard.repeat.del1=180 - -- name: wsconsctl keyboard default acceleration - lineinfile: - path: /etc/wsconsctl.conf - regexp: ^keyboard.repeat.deln= - line: keyboard.repeat.deln=50 - -- name: wsconctl disable keyboard bell - lineinfile: - path: /etc/wsconsctl.conf - regexp: ^keyboard.bell.volume= - line: keyboard.bell.volume=0 - -- name: wsconctl enable touchpad tapping - lineinfile: - path: /etc/wsconsctl.conf - regexp: ^mouse.tp.tapping= - line: mouse.tp.tapping=1 |