https://github.com/computate-org/computate_syncthing
https://github.com/computate-org/computate_syncthing
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/computate-org/computate_syncthing
- Owner: computate-org
- Created: 2021-09-08T21:52:44.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-09-08T19:09:00.000Z (almost 4 years ago)
- Last Synced: 2025-06-21T07:42:56.033Z (12 months ago)
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Install syncthing
## Install git and ansible
```bash
sudo yum install -y git ansible
```
## Install the syncthing ansible role
### Create a directory for the ansible role.
```bash
install -d ~/.ansible/roles/computate.computate_syncthing
```
### Clone the syncthing ansible role.
```bash
git clone git@github.com:computate-org/computate_syncthing.git ~/.ansible/roles/computate.computate_syncthing
```
## Run the syncthing ansible playbook to install the application locally (requires sudo privileges with -K).
```bash
cd ~/.ansible/roles/computate.computate_syncthing
ansible-playbook -K install.yml
```
## Add trusted devices
```bash
sudo firewall-cmd --add-source 192.168.86.37/24 --zone trusted --permanent
sudo firewall-cmd --reload
```