https://github.com/frozenfoxx/puppet-rclone
Puppet module to configure rclone on a system
https://github.com/frozenfoxx/puppet-rclone
puppet puppet-module
Last synced: 5 months ago
JSON representation
Puppet module to configure rclone on a system
- Host: GitHub
- URL: https://github.com/frozenfoxx/puppet-rclone
- Owner: frozenfoxx
- License: apache-2.0
- Created: 2020-09-22T21:11:07.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-04-02T22:40:38.000Z (11 months ago)
- Last Synced: 2025-08-06T13:17:54.998Z (6 months ago)
- Topics: puppet, puppet-module
- Language: Ruby
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# rclone
[Rclone](https://rclone.org/) is a powerful cloud synchronization tool. This module installs and configures it.
#### Table of Contents
1. [Description](#description)
2. [Setup](#setup)
* [Beginning with rclone](#beginning-with-rclone)
3. [Usage](#usage)
4. [Development](#development)
## Description
This module makes an installation of the package Rclone. It's useful for dealing with Cloud providers in the same way you would use rsync to deal with file system providers.
## Setup
### Beginning with rclone
Include this module and it will handle all steps for installation and configuration for the `root` or equivalent user on your system.
```
include rclone
```
## Usage
Add a section to your hieradata configuration to set up various remotes.
**hiera file**:
```
rclone::remotes:
'my-remote':
type: 'http'
url: 'https://[URL to clone from]'
```
Then include this module:
**puppet code**:
```
include rclone
```
## Limitations
This module has only been tested on Debian-based systems though rclone is multiplatform. It also does not have a way built-in to work with environment variables such as when handling Docker container-based launches. It will likely work on macOS though would need additional handling to make it more native.
## Development
* Fork it
* Create a topic branch
* Improve/fix
* Push new topic branch
* Submit a PR