mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Optimized developer personas, implemented gcc and solved python-pip update bug
This commit is contained in:
29
roles/persona-administrator-network/README.md
Normal file
29
roles/persona-administrator-network/README.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# Persona: Network Administrator🌐
|
||||
|
||||
## Description
|
||||
|
||||
This Ansible role installs core tools for network administrators and system engineers on Arch Linux. It focuses on diagnostics, protocol analysis, and connectivity testing in local and remote environments.
|
||||
|
||||
Learn more about Linux network tools on the [Arch Wiki - Network Tools](https://wiki.archlinux.org/title/Network_tools), [Wireshark Official Site](https://www.wireshark.org/), and [Traceroute](https://linux.die.net/man/8/traceroute).
|
||||
|
||||
## Overview
|
||||
|
||||
This role enhances the base `persona-administrator` role by adding tools specifically for analyzing, debugging, and monitoring network traffic and connectivity.
|
||||
|
||||
## Purpose
|
||||
|
||||
Designed for system and network administrators, this role provides quick access to powerful network tools, enabling efficient problem analysis and packet inspection.
|
||||
|
||||
## Features
|
||||
|
||||
- **Installs Network Utilities:** Includes `traceroute`, `wireshark-qt`, and `wireshark-cli`.
|
||||
- **Packet Analysis Ready:** GUI and CLI tools for inspecting and decoding network traffic.
|
||||
- **Persona Integration:** Extends the core administrator persona for network-focused tasks.
|
||||
|
||||
## 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)
|
26
roles/persona-administrator-network/meta/main.yml
Normal file
26
roles/persona-administrator-network/meta/main.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
galaxy_info:
|
||||
author: "Kevin Veen-Birkenbach"
|
||||
description: "Installs essential network analysis tools for system administrators 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:
|
||||
- network
|
||||
- administration
|
||||
- archlinux
|
||||
- persona
|
||||
- tools
|
||||
repository: https://s.veen.world/cymais
|
||||
issue_tracker_url: https://s.veen.world/cymaisissues
|
||||
documentation: https://s.veen.world/cymais
|
||||
dependencies:
|
||||
- persona-administrator
|
7
roles/persona-administrator-network/tasks/main.yml
Normal file
7
roles/persona-administrator-network/tasks/main.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
- name: install administrator network analyze tools
|
||||
community.general.pacman:
|
||||
name:
|
||||
- traceroute
|
||||
- wireshark-qt
|
||||
- wireshark-cli
|
||||
state: present
|
Reference in New Issue
Block a user