mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 09:04:52 +01:00
Page:
Install Rclone with Ansible
Pages
"serve" to Another Computer
Automatic Syncing from Google Drive to Server with rclone
Big syncs with millions of files
Configure Rclone using 1password (and Ansible)
Docker images
Export configuration password to env variable and only remember it for some time
Home
How to enable VSS for rclone
Install Rclone with Ansible
Install rclone via powershell script
Launch rclone on Android with Automate
Making your own OneDrive client to avoid shared quota? When GUI is unavailable, try the Azure CLI
Mounting Oracle OCI Object Storage Buckets as Local File System
Prompt "fusermount3": executable file not found in $PATH and cannot mount!
Rclone Optimizations
Securing rclone using password and config in & out commands [Android, Windows]
Setting up a Windows development environment for rclone
Systemd rclone mount
Third Party Installers
Third Party Integrations with rclone
Using Volume Shadow Copy Service (VSS) with rclone
What to do after the repository move
Windows Installation with Chocolatey
Windows PowerShell use rclone password command for config file password
how to run .exe application on rclone mount
rclone fstab mount helper script
rclone mount helper script
rclone on Android with Termux
turn your android phone into a media server
2
Install Rclone with Ansible
Pasquale Carlo Maiorano Picone edited this page 2019-03-14 14:22:09 +01:00
Ansible
Rclone could be installed using an Ansible role: https://galaxy.ansible.com/charliemaiors/rclone-ansible.
This role installs Rclone using the package manager if the OS is supported, otherwise will switch to manual installation downloading it from the website.
OSes with Rclone in the package manager (and supported by this role) are:
- FreeBSD (12-11-10-9)
- macOS
- Ubuntu 18
- Debian
- Fedora (29-28-27)
- OpenSUSE leap
- CentOS/RedHat 7
- Archlinux
- Windows
The other distributions are supported via site download.
Example
You can use this playbook to install rclone on a given set of hosts, in this case under the [rclone] section on the ansible hosts file.
- name: Install rclone
hosts: rclone
roles:
- { role: charliemaiors.rclone-ansible }