mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-22 04:31:13 +01:00
Removed pc_ for better overview
This commit is contained in:
parent
dbbaa48e44
commit
6ea4bfc0a8
28
README.md
28
README.md
@ -61,20 +61,20 @@ May it's neccessary to restart some of the the docker containers manual afterwar
|
||||
This playbooks offers the setup of Manjaro GNOME clients.
|
||||
|
||||
### Included Applications
|
||||
- [Basic Linux Administration Tools](./roles/pc_collection-administrator-base/)
|
||||
- [Network Analyzes Tools](./roles/pc_collection-administrator-network-analyze/)
|
||||
- [Designer Tools](./roles/pc_collection-designer/)
|
||||
- [Arduino Developer Tools](./roles/pc_collection-developer-arduino/)
|
||||
- [Basic Developer Tools](./roles/pc_collection-developer-base/)
|
||||
- [Bash Developer Tools](./roles/pc_collection-developer-bash/)
|
||||
- [Java Developer Tools](./roles/pc_collection-developer-java/)
|
||||
- [PHP Developer Tools](./roles/pc_collection-developer-php/)
|
||||
- [Python Developer Tools](./roles/pc_collection-developer-python/)
|
||||
- [Entertainment Software](./roles/pc_collection-entertainment/)
|
||||
- [Games](./roles/pc_collection-games/)
|
||||
- [Office Tools](./roles/pc_collection-office/)
|
||||
- [Streaming Tools](./roles/pc_collection-streamer/)
|
||||
- [Torrent Software](./roles/pc_collection-torrent/)
|
||||
- [Basic Linux Administration Tools](./roles/collection-administrator-base/)
|
||||
- [Network Analyzes Tools](./roles/collection-administrator-network-analyze/)
|
||||
- [Designer Tools](./roles/collection-designer/)
|
||||
- [Arduino Developer Tools](./roles/collection-developer-arduino/)
|
||||
- [Basic Developer Tools](./roles/collection-developer-base/)
|
||||
- [Bash Developer Tools](./roles/collection-developer-bash/)
|
||||
- [Java Developer Tools](./roles/collection-developer-java/)
|
||||
- [PHP Developer Tools](./roles/collection-developer-php/)
|
||||
- [Python Developer Tools](./roles/collection-developer-python/)
|
||||
- [Entertainment Software](./roles/collection-entertainment/)
|
||||
- [Games](./roles/collection-games/)
|
||||
- [Office Tools](./roles/collection-office/)
|
||||
- [Streaming Tools](./roles/collection-streamer/)
|
||||
- [Torrent Software](./roles/collection-torrent/)
|
||||
- ...
|
||||
|
||||
### Setup
|
||||
|
52
playbook.yml
52
playbook.yml
@ -203,110 +203,110 @@
|
||||
hosts: personal_computers
|
||||
become: true
|
||||
roles:
|
||||
- pc_collection-administrator-base
|
||||
- pc_driver-non-free
|
||||
- collection-administrator-base
|
||||
- driver-non-free
|
||||
|
||||
- name: pc_collection-office
|
||||
- name: collection-office
|
||||
hosts: collection_officetools
|
||||
become: true
|
||||
roles:
|
||||
- pc_collection-office
|
||||
- collection-office
|
||||
|
||||
- name: pc_collection-designer
|
||||
- name: collection-designer
|
||||
hosts: collection_designer
|
||||
become: true
|
||||
roles:
|
||||
- pc_collection-designer
|
||||
- collection-designer
|
||||
|
||||
- name: pc_collection-torrent
|
||||
- name: collection-torrent
|
||||
hosts: collection_torrent
|
||||
become: true
|
||||
roles:
|
||||
- pc_collection-torrent
|
||||
- collection-torrent
|
||||
|
||||
- name: pc_collection-streamer
|
||||
- name: collection-streamer
|
||||
hosts: collection_streamer
|
||||
become: true
|
||||
roles:
|
||||
- pc_collection-streamer
|
||||
- collection-streamer
|
||||
|
||||
- name: pc_collection-bluray-player
|
||||
- name: collection-bluray-player
|
||||
hosts: collection_bluray_player
|
||||
become: true
|
||||
roles:
|
||||
- pc_collection-bluray-player
|
||||
- collection-bluray-player
|
||||
|
||||
- name: pc_driver-intel
|
||||
- name: driver-intel
|
||||
hosts: intel
|
||||
become: true
|
||||
roles:
|
||||
- pc_driver-intel
|
||||
- driver-intel
|
||||
|
||||
- name: pc_application-latex
|
||||
- name: application-latex
|
||||
hosts: latex
|
||||
become: true
|
||||
roles:
|
||||
- pc_application-latex
|
||||
- application-latex
|
||||
|
||||
- name: GNOME setup
|
||||
hosts: gnome
|
||||
become: true
|
||||
roles:
|
||||
- pc_system-gnome
|
||||
- system-gnome
|
||||
|
||||
- name: setup msi rgb keyboard
|
||||
hosts: msi_perkeyrgb
|
||||
become: true
|
||||
roles:
|
||||
- pc_application-msi-keyboard-color
|
||||
- application-msi-keyboard-color
|
||||
|
||||
- name: setup ssh hosts
|
||||
hosts: ssh
|
||||
become: false
|
||||
roles:
|
||||
- pc_application-ssh
|
||||
- application-ssh
|
||||
|
||||
- name: setup swapfile hosts
|
||||
hosts: swapfile
|
||||
become: false
|
||||
roles:
|
||||
- pc_system-swapfile
|
||||
- system-swapfile
|
||||
|
||||
- name: setup gaming hosts
|
||||
hosts: gaming
|
||||
become: true
|
||||
roles:
|
||||
- pc_collection-games
|
||||
- collection-games
|
||||
|
||||
- name: setup entertainment hosts
|
||||
hosts: entertainment
|
||||
become: true
|
||||
roles:
|
||||
- pc_collection-entertainment
|
||||
- collection-entertainment
|
||||
|
||||
- name: setup multiprinter hosts
|
||||
hosts: epson_multiprinter
|
||||
become: true
|
||||
roles:
|
||||
- pc_driver-epson-multiprinter
|
||||
- driver-epson-multiprinter
|
||||
|
||||
- name: setup torbrowser hosts
|
||||
hosts: torbrowser
|
||||
become: true
|
||||
roles:
|
||||
- pc_application-torbrowser
|
||||
- application-torbrowser
|
||||
|
||||
- name: setup nextcloud
|
||||
hosts: nextcloud_client
|
||||
become: true
|
||||
roles:
|
||||
- pc_application-nextcloud
|
||||
- application-nextcloud
|
||||
|
||||
- name: setup docker
|
||||
hosts: docker
|
||||
become: true
|
||||
roles:
|
||||
- pc_application-docker
|
||||
- application-docker
|
||||
|
||||
|
||||
- name: setup backup to swappable
|
||||
|
@ -1,5 +1,5 @@
|
||||
# This file is created by
|
||||
# https://github.com/kevinveenbirkenbach/computer-playbook/tree/main/roles/pc_application-wireguard
|
||||
# https://github.com/kevinveenbirkenbach/computer-playbook/tree/main/roles/application-wireguard
|
||||
|
||||
net.ipv6.conf.all.disable_ipv6 = 0
|
||||
net.ipv6.conf.default.disable_ipv6 = 0
|
||||
|
Loading…
Reference in New Issue
Block a user