15 lines
276 B
Bash
Executable File
15 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Debian/Ubuntu packages
|
|
# https://apt.syncthing.net/
|
|
|
|
# Configuration
|
|
# https://docs.syncthing.net/users/config.html
|
|
|
|
# Autostart
|
|
# https://docs.syncthing.net/users/autostart.html
|
|
|
|
sudo systemctl enable syncthing@lachtan
|
|
sudo systemctl start syncthing@lachtan
|
|
|