Browse Source

draft for cloud storage

pydio
Edoardo Putti 8 years ago
parent
commit
07a82e3247
1 changed files with 27 additions and 0 deletions
  1. +27
    -0
      pydio.yaml

+ 27
- 0
pydio.yaml View File

@ -0,0 +1,27 @@
---
- hosts: biff
roles:
- role: lxc_guest
vm_name: pydio
vm_size: 30G
distro: stretch
- hosts: pydio
tasks:
- name: Add syncthing repo key
apt_key:
url: "https://syncthing.net/release-key.txt"
state: present
- name: Add syncthing
apt_repository:
repo: "deb http://apt.syncthing.net/ syncthing release"
state: present
- name: Install syncthing
apt:
name: syncthing
state: present
update_cache: yes
- name: Enable syncthing
service:
name: syncthing
state: started
enabled: yes

Loading…
Cancel
Save