From 289691127178cf6f89de8880c8985f27aded371d Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Sat, 23 Mar 2024 11:03:39 +0000 Subject: [PATCH] Clear FreeBSD console --- roles/freebsd/tasks/gettytab.yml | 23 +++++++++++++++++++++++ roles/freebsd/tasks/main.yml | 3 ++- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 roles/freebsd/tasks/gettytab.yml diff --git a/roles/freebsd/tasks/gettytab.yml b/roles/freebsd/tasks/gettytab.yml new file mode 100644 index 0000000..4056cfa --- /dev/null +++ b/roles/freebsd/tasks/gettytab.yml @@ -0,0 +1,23 @@ +--- +# Copyright 2021-2024 Anthony Perkins +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +- name: Clear console screen + become: true + ansible.builtin.lineinfile: + path: /etc/gettytab + regexp: '^\t:ht:np:sp#9600:.*' + line: ' :ht:np:sp#9600:cl=\E[H\E[2J:' + insertafter: '^P|Pc|Pc console:\\' + create: no diff --git a/roles/freebsd/tasks/main.yml b/roles/freebsd/tasks/main.yml index 3712b8d..c779c6b 100644 --- a/roles/freebsd/tasks/main.yml +++ b/roles/freebsd/tasks/main.yml @@ -1,5 +1,5 @@ --- -# Copyright 2021-2023 Anthony Perkins +# Copyright 2021-2024 Anthony Perkins # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -18,6 +18,7 @@ when: gui == true - import_tasks: rc.yml - import_tasks: sysctl.yml +- import_tasks: gettytab.yml - import_tasks: sudo.yml - import_tasks: xorg.yml when: gui == true