Initial
This commit is contained in:
26
roles/workstation/tasks/software/nextcloud.yml
Normal file
26
roles/workstation/tasks/software/nextcloud.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
# - name: software | nextcloud | install package
|
||||
# tags: packages,flatpak,audacity,workstation-packages
|
||||
# become_user: bzoicas
|
||||
# flatpak:
|
||||
# name: com.nextcloud.desktopclient.nextcloud
|
||||
# method: user
|
||||
# state: present
|
||||
# when: nextcloud is defined and nextcloud == true
|
||||
|
||||
- name: software | nextcloud-client | install
|
||||
tags: packages,system,system-packages,workstation-packages
|
||||
package:
|
||||
name:
|
||||
- nextcloud-client
|
||||
when: ansible_distribution in ["Fedora"]
|
||||
|
||||
- name: software | nextcloud-client | copy config files
|
||||
tags: dotfiles,dotfiles-bzoicas
|
||||
copy:
|
||||
src: users/bzoicas/{{ item.src }}
|
||||
dest: /home/bzoicas/{{ item.dest }}
|
||||
owner: bzoicas
|
||||
group: bzoicas
|
||||
mode: 0660
|
||||
with_items:
|
||||
- { src: 'nextcloud.cfg', dest: '.config/Nextcloud' }
|
||||
Reference in New Issue
Block a user