Solved bugs, restructured and added new functionality for clients/personal computers

This commit is contained in:
2025-04-02 12:27:54 +02:00
parent 500f8b508d
commit 30b138ffa3
33 changed files with 289 additions and 119 deletions

View File

@@ -0,0 +1,34 @@
- name: Install nextcloud-client
community.general.pacman:
name: nextcloud-client
state: present
- name: Link homefolders to cloud
ansible.builtin.file:
src: "{{cloud_directory}}{{item}}"
dest: "{{user_home_directory}}{{item}}"
owner: "{{users.client.username}}"
group: "{{users.client.username}}"
state: link
force: yes
ignore_errors: true # Just temporary @todo remove
loop:
- Templates
- Documents
- Videos
- Pictures
- Music
- Desktop
- Software
- Downloads
- Workspaces
- Books
- Screenshots
- name: Link dump folder
ansible.builtin.file:
src: "{{cloud_directory}}InstantUpload"
dest: "{{user_home_directory}}Dump"
owner: "{{users.client.username}}"
group: "{{users.client.username}}"
state: link