src.nth.io/

summaryrefslogtreecommitdiff
path: root/rpi-base
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2026-03-28 13:42:08 -0500
committerLuke Hoersten <[email protected]>2026-03-28 13:42:08 -0500
commit45da5bca82200af63b0ee16479b267eb209386f3 (patch)
tree91725673c5cf227cda7edee89f2909a30251eda3 /rpi-base
parent7ac3515aa05a60f24176cfda0364694ff2fdb8c3 (diff)
Added soju role.
Diffstat (limited to 'rpi-base')
-rw-r--r--rpi-base/tasks/main.yaml15
1 files changed, 14 insertions, 1 deletions
diff --git a/rpi-base/tasks/main.yaml b/rpi-base/tasks/main.yaml
index c9626b6..c2701bf 100644
--- a/rpi-base/tasks/main.yaml
+++ b/rpi-base/tasks/main.yaml
@@ -30,7 +30,7 @@
- name: update apt package cache
become: yes
- apt: upgrade="dist" autoremove="yes" autoclean="yes" update_cache="yes" cache_valid_time="3600"
+ apt: update_cache="yes" cache_valid_time="3600"
- name: install extra apt packages
become: yes
@@ -94,3 +94,16 @@
- name: ensure log2ram service is started
become: yes
systemd: name="log2ram.service" enabled="yes" state="started"
+
+- name: get local terminfo
+ command: infocmp
+ delegate_to: localhost
+ register: terminfo
+ changed_when: false
+
+- name: install local terminfo on host
+ become: yes
+ shell: "tic -x -"
+ args:
+ stdin: "{{terminfo.stdout}}"
+ changed_when: false