renamed latex role and removed deprecated packages

This commit is contained in:
Kevin Veen-Birkenbach 2023-12-03 16:34:25 +01:00
parent 1f29da276e
commit 4b9f2b9be2
4 changed files with 6 additions and 6 deletions

View File

@ -184,7 +184,7 @@ Dedicated to Docker container setups and application management, offering a wide
Encompasses miscellaneous essential tools and systems, including AUR helper, spellchecking, typesetting, and package management. Encompasses miscellaneous essential tools and systems, including AUR helper, spellchecking, typesetting, and package management.
- **[System-Aur-Helper](./roles/system-aur-helper/)**: Installs and configures AUR helper (yay). - **[System-Aur-Helper](./roles/system-aur-helper/)**: Installs and configures AUR helper (yay).
- **[Hunspell](./roles/hunspell/)**: Installation of Hunspell spellchecker. - **[Hunspell](./roles/hunspell/)**: Installation of Hunspell spellchecker.
- **[Latex](./roles/latex/)**: Installation of LaTeX typesetting system. - **[Latex](./roles/pc-latex/)**: Installation of LaTeX typesetting system.
- **[Java](./roles/java/)**: Installs Java Development Kit (JDK). - **[Java](./roles/java/)**: Installs Java Development Kit (JDK).
- **[Python Pip](./roles/python-pip/)**: Installation of Python Pip package manager. - **[Python Pip](./roles/python-pip/)**: Installation of Python Pip package manager.

View File

@ -271,11 +271,11 @@
roles: roles:
- driver-intel - driver-intel
- name: latex - name: pc-latex
hosts: latex hosts: latex
become: true become: true
roles: roles:
- latex - pc-latex
- name: GNOME setup - name: GNOME setup
hosts: gnome hosts: gnome

View File

@ -7,7 +7,7 @@ Welcome to the LaTeX role within the `cymais` repository. It focuses on setting
The `main.yml` file in this role automates the installation of key LaTeX packages: The `main.yml` file in this role automates the installation of key LaTeX packages:
1. **Install LaTeX Software**: This task uses the `community.general.pacman` module to install a range of LaTeX packages, ensuring a robust setup for LaTeX users. The packages include: 1. **Install LaTeX Software**: This task uses the `community.general.pacman` module to install a range of LaTeX packages, ensuring a robust setup for LaTeX users. The packages include:
- `texlive-latexextra`: Offers additional LaTeX packages. - `texlive-pc-latexextra`: Offers additional LaTeX packages.
- `texlive-lang`: Provides language support. - `texlive-lang`: Provides language support.
- `texlive-langextra`: Includes extra language packs. - `texlive-langextra`: Includes extra language packs.
- `texlive-fontsextra`: Adds a comprehensive collection of fonts. - `texlive-fontsextra`: Adds a comprehensive collection of fonts.
@ -26,7 +26,7 @@ For an extensive list of available LaTeX packages and customization options, you
## Running the Role ## Running the Role
To execute this role: To execute this role:
1. Ensure the `cymais` repository is cloned to your system. 1. Ensure the `cymais` repository is cloned to your system.
2. Navigate to the `roles/latex` directory within the repository. 2. Navigate to the `roles/pc-latex` directory within the repository.
3. Run the role using the appropriate Ansible commands. 3. Run the role using the appropriate Ansible commands.
## Customization ## Customization

View File

@ -5,5 +5,5 @@
- texlive-lang - texlive-lang
- texlive-langextra - texlive-langextra
- texlive-fontsextra - texlive-fontsextra
- texlive-most - texlive
state: present state: present