mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-09 22:41:03 +01:00
Merge branch 'main' of github.com:kevinveenbirkenbach/client-playbook
This commit is contained in:
commit
130a948790
@ -13,7 +13,7 @@
|
||||
hosts: torbrowser_hosts
|
||||
become: true
|
||||
roles:
|
||||
- torbrowser-games
|
||||
- native-torbrowser
|
||||
- name: setup libreoffice hosts
|
||||
hosts: libreoffice_hosts
|
||||
become: true
|
||||
|
@ -2,3 +2,18 @@
|
||||
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: "{{client_username}}"
|
||||
group: "{{client_username}}"
|
||||
state: link
|
||||
loop:
|
||||
- Templates
|
||||
- Documents
|
||||
- Videos
|
||||
- Pictures
|
||||
- Music
|
||||
- Desktop
|
||||
|
2
roles/native-nextcloud-client/vars/main.yml
Normal file
2
roles/native-nextcloud-client/vars/main.yml
Normal file
@ -0,0 +1,2 @@
|
||||
user_home_directory: "/home/{{client_username}}/"
|
||||
cloud_directory: "{{user_home_directory}}Clouds/{{cloud_fqdn}}/"
|
Loading…
Reference in New Issue
Block a user