Compare commits
2 commits
6db21ad3c9
...
2a88d754e9
| Author | SHA1 | Date | |
|---|---|---|---|
| 2a88d754e9 | |||
|
a92e144cfc |
2 changed files with 21 additions and 1 deletions
|
|
@ -24,7 +24,7 @@ jobs:
|
||||||
# work in our environmnet.
|
# work in our environmnet.
|
||||||
# Rather manually setup python (pip) before instead.
|
# Rather manually setup python (pip) before instead.
|
||||||
- name: Run ansible-lint
|
- name: Run ansible-lint
|
||||||
uses: https://github.com/ansible/ansible-lint@v25.12.2
|
uses: https://github.com/ansible/ansible-lint@v26.1.0
|
||||||
with:
|
with:
|
||||||
setup_python: "false"
|
setup_python: "false"
|
||||||
requirements_file: "requirements.yml"
|
requirements_file: "requirements.yml"
|
||||||
|
|
|
||||||
|
|
@ -11,3 +11,23 @@
|
||||||
replace: " #- ssh"
|
replace: " #- ssh"
|
||||||
become: true
|
become: true
|
||||||
when: base_config__stat_cloud_cfg.stat.exists
|
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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue