mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
General optimations during inventory cleanup
This commit is contained in:
23
roles/util-desk-office/README.md
Normal file
23
roles/util-desk-office/README.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# Office Tools
|
||||
|
||||
## Description
|
||||
|
||||
This Ansible role installs a comprehensive suite of office productivity tools on Pacman-based Linux distributions, including a web browser, email client, e-book manager, and document editor.
|
||||
|
||||
## Overview
|
||||
|
||||
The `util-desk-office` role uses the `community.general.pacman` module to:
|
||||
|
||||
1. Install **Chromium** (web browser)
|
||||
2. Install **Thunderbird** (email and RSS client)
|
||||
3. Install **Calibre** (e-book management software)
|
||||
4. Install **ReText** (Markdown and reStructuredText editor)
|
||||
|
||||
## Features
|
||||
|
||||
* Idempotent installation of all specified office packages
|
||||
* Supports any Pacman-based distribution (e.g., Arch Linux)
|
||||
* Easily extendable by adding or removing package names
|
||||
|
||||
## Further Resources
|
||||
* [CyMaIS GitHub repository](https://github.com/kevinveenbirkenbach/cymais)
|
28
roles/util-desk-office/meta/main.yml
Normal file
28
roles/util-desk-office/meta/main.yml
Normal file
@@ -0,0 +1,28 @@
|
||||
---
|
||||
galaxy_info:
|
||||
author: "Kevin Veen-Birkenbach"
|
||||
description: "Installs a suite of office productivity tools—web browser, email client, e-book manager, and reStructuredText/Markdown editor—on Pacman-based systems."
|
||||
license: "CyMaIS NonCommercial License (CNCL)"
|
||||
license_url: "https://s.veen.world/cncl"
|
||||
company: |
|
||||
Kevin Veen-Birkenbach
|
||||
Consulting & Coaching Solutions
|
||||
https://www.veen.world
|
||||
galaxy_tags:
|
||||
- office
|
||||
- productivity
|
||||
- browser
|
||||
- email
|
||||
- ebook
|
||||
- editor
|
||||
repository: "https://github.com/kevinveenbirkenbach/cymais"
|
||||
issue_tracker_url: "https://github.com/kevinveenbirkenbach/cymais/issues"
|
||||
documentation: "https://github.com/kevinveenbirkenbach/cymais/tree/main/roles/util-desk-office"
|
||||
min_ansible_version: "2.9"
|
||||
platforms:
|
||||
- name: Archlinux
|
||||
versions:
|
||||
- all
|
||||
dependencies:
|
||||
- desk-libreoffice
|
||||
- util-desk-browser
|
7
roles/util-desk-office/tasks/main.yml
Normal file
7
roles/util-desk-office/tasks/main.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
- name: install office sofware
|
||||
community.general.pacman:
|
||||
name:
|
||||
- thunderbird
|
||||
- calibre
|
||||
- retext
|
||||
state: present
|
1
roles/util-desk-office/vars/main.yml
Normal file
1
roles/util-desk-office/vars/main.yml
Normal file
@@ -0,0 +1 @@
|
||||
application_id: util-desk-office
|
Reference in New Issue
Block a user