Scripts/Linux/Syncthing/install_syncthing.sh
2022-05-29 13:06:29 +01:00

64 lines
1.8 KiB
Bash

#!/bin/bash
# Elevate Privelage
echo "This Script has to be ran as Sudo"
sudo -v
sudo apt install net-tools
# Set Variables
ip=$(sudo ifconfig eth0 | perl -ne 'print $1 if /inet\s.*?(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\b/')
syncthingversion=$(curl --silent "https://api.github.com/repos/syncthing/syncthing/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
#Setup Syncthing User
sudo mkdir /opt/syncthing
sudo chown syncthing -R /opt/syncthing
sudo chgrp $(echo "$USER") -R /opt/syncthing
sudo chmod 770 /opt/syncthing
mkdir /opt/syncthing/config
mkdir /opt/syncthing/bin
mkdir /opt/syncthing/bin/current
sudo adduser \
--system \
--shell /bin/bash \
--gecos 'Syncthing Client' \
--group \
--disabled-password \
--home /opt/syncthing/config \
syncthing
# Get Syncthing and setup
cd /opt/syncthing/bin
wget https://github.com/syncthing/syncthing/releases/download/$(echo $syncthingversion)/syncthing-linux-amd64-$(echo $syncthingversion).tar.gz
tar -xvf syncthing-linux-amd64-$syncthingversion.tar.gz
cp -r syncthing-linux-amd64-$syncthingversion/* /opt/syncthing/bin/current
cat <<EOF > /opt/syncthing/bin/version.txt
$syncthingversion
EOF
rm syncthing-linux-amd64-$syncthingversion.tar.gz
rm -r syncthing-linux-amd64-$(echo $syncthingversion)
# Setup Supervisor
sudo apt-get install supervisor
sudo bash -c 'cat <<EOF > /etc/supervisor/conf.d/syncthing.conf
[program:syncthing]
autorestart = True
directory = /opt/syncthing/config
user = sycthing
command = /usr/local/bin/syncthing -no-browser -logflags=0 -gui-address=$ip:8384 -home=/opt/syncthing/config/
environment = STNORESTART="1", HOME="/opt/syncthing/config/"
EOF'
sudo supervisorctl reread
sudo supervisorctl update
sudo supervisorctl reload
echo "If everything installed with no errors"
echo "Please go to http://$ip:8384"