An open API service indexing awesome lists of open source software.

https://github.com/computate-org/computate_syncthing


https://github.com/computate-org/computate_syncthing

Last synced: 4 months ago
JSON representation

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
```