Compare commits

...

2 commits

Author SHA1 Message Date
c260328248 Update actions/checkout action to v6
Some checks failed
/ Ansible Lint (push) Failing after 3m37s
/ Ansible Lint (pull_request) Failing after 2m22s
2026-01-13 00:00:44 +00:00
a92e144cfc
base_config(role): ensure base set of admin tools is installed
Some checks failed
/ Ansible Lint (push) Failing after 1m55s
See:
https://git.hamburg.ccc.de/CCCHH/nix-infra/src/branch/main/config/common/admin-environment.nix
2026-01-13 00:41:06 +01:00
2 changed files with 21 additions and 1 deletions

View file

@ -10,7 +10,7 @@ jobs:
name: Ansible Lint
runs-on: docker
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install pip
run: |
apt update

View file

@ -11,3 +11,23 @@
replace: " #- ssh"
become: true
when: base_config__stat_cloud_cfg.stat.exists
# Ensure a base set of admin tools is installed.
- name: ensure a base set of admin tools is installed
ansible.builtin.apt:
name:
- vim
- joe
- nano
- htop
- btop
- ripgrep
- fd-find
- tmux
- git
- curl
- rsync
- dnsutils
- usbutils
- kitty
become: true