diff --git a/README.md b/README.md index c009b2d8..cef16ae8 100644 --- a/README.md +++ b/README.md @@ -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. - **[System-Aur-Helper](./roles/system-aur-helper/)**: Installs and configures AUR helper (yay). - **[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). - **[Python Pip](./roles/python-pip/)**: Installation of Python Pip package manager. diff --git a/playbook.yml b/playbook.yml index f802ddda..6cebec86 100644 --- a/playbook.yml +++ b/playbook.yml @@ -271,11 +271,11 @@ roles: - driver-intel -- name: latex +- name: pc-latex hosts: latex become: true roles: - - latex + - pc-latex - name: GNOME setup hosts: gnome diff --git a/roles/latex/README.md b/roles/pc-latex/README.md similarity index 93% rename from roles/latex/README.md rename to roles/pc-latex/README.md index 1c261be2..4598d391 100644 --- a/roles/latex/README.md +++ b/roles/pc-latex/README.md @@ -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: 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-langextra`: Includes extra language packs. - `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 To execute this role: 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. ## Customization diff --git a/roles/latex/tasks/main.yml b/roles/pc-latex/tasks/main.yml similarity index 90% rename from roles/latex/tasks/main.yml rename to roles/pc-latex/tasks/main.yml index 18b0f09e..12e3c22b 100644 --- a/roles/latex/tasks/main.yml +++ b/roles/pc-latex/tasks/main.yml @@ -5,5 +5,5 @@ - texlive-lang - texlive-langextra - texlive-fontsextra - - texlive-most + - texlive state: present \ No newline at end of file