mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
REmoved dep because they get included via task
This commit is contained in:
36
roles/util-desk-dev-shell/README.md
Normal file
36
roles/util-desk-dev-shell/README.md
Normal file
@@ -0,0 +1,36 @@
|
||||
# Shell Development Utilities 🐚
|
||||
|
||||
## Description
|
||||
|
||||
This Ansible role sets up a minimal yet effective environment for Bash and shell script development on Arch Linux. It includes tools like `shellcheck` that help developers write clean, maintainable, and error-free shell scripts.
|
||||
|
||||
Learn more about [ShellCheck](https://www.shellcheck.net/), [Bash](https://www.gnu.org/software/bash/), and general shell scripting via the [Arch Wiki - Bash](https://wiki.archlinux.org/title/Bash).
|
||||
|
||||
## Overview
|
||||
|
||||
This role expands the general `util-desk-dev-core` by equipping the system with tools specifically aimed at writing and linting shell scripts. It's ideal for DevOps engineers, system administrators, and anyone automating systems with Bash.
|
||||
|
||||
## Purpose
|
||||
|
||||
The role ensures that the developer can safely and efficiently write shell scripts, catching bugs and stylistic issues early using static analysis.
|
||||
|
||||
## Features
|
||||
|
||||
- **Installs ShellCheck:** A linting tool for detecting issues in shell scripts.
|
||||
- **Persona Integration:** Extends the general developer persona for Bash-centric workflows.
|
||||
- **Lightweight & Fast:** Quick setup with room for future extensions.
|
||||
|
||||
## Customization
|
||||
|
||||
You can easily extend this role with:
|
||||
- Additional linting or formatting tools
|
||||
- Script documentation generators
|
||||
- Shell environments like `zsh`, `fish`, or `nushell`
|
||||
|
||||
## Credits 📝
|
||||
|
||||
Developed and maintained by **Kevin Veen-Birkenbach**.
|
||||
Learn more at [www.veen.world](https://www.veen.world)
|
||||
|
||||
Part of the [CyMaIS Project](https://github.com/kevinveenbirkenbach/cymais)
|
||||
License: [CyMaIS NonCommercial License (CNCL)](https://s.veen.world/cncl)
|
28
roles/util-desk-dev-shell/meta/main.yml
Normal file
28
roles/util-desk-dev-shell/meta/main.yml
Normal file
@@ -0,0 +1,28 @@
|
||||
---
|
||||
galaxy_info:
|
||||
author: "Kevin Veen-Birkenbach"
|
||||
description: "Installs tools for Bash scripting and shell development on Linux."
|
||||
license: "CyMaIS NonCommercial License (CNCL)"
|
||||
license_url: "https://s.veen.world/cncl"
|
||||
company: |
|
||||
Kevin Veen-Birkenbach
|
||||
Consulting & Coaching Solutions
|
||||
https://www.veen.world
|
||||
min_ansible_version: "2.9"
|
||||
platforms:
|
||||
- name: Archlinux
|
||||
versions:
|
||||
- rolling
|
||||
galaxy_tags:
|
||||
- development
|
||||
- shell
|
||||
- bash
|
||||
- scripting
|
||||
- archlinux
|
||||
- persona
|
||||
- automation
|
||||
repository: https://s.veen.world/cymais
|
||||
issue_tracker_url: https://s.veen.world/cymaisissues
|
||||
documentation: https://s.veen.world/cymais
|
||||
dependencies:
|
||||
- util-desk-dev-core
|
5
roles/util-desk-dev-shell/tasks/main.yml
Normal file
5
roles/util-desk-dev-shell/tasks/main.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
- name: install bash developer tools
|
||||
community.general.pacman:
|
||||
name:
|
||||
- shellcheck
|
||||
state: present
|
Reference in New Issue
Block a user