mirror of
https://github.com/JanJastrow/.dotfiles.git
synced 2024-11-09 20:54:51 +01:00
install syncthing debian/ubuntu
This commit is contained in:
parent
2571cd4b61
commit
9bd5388862
12
scripts/install-syncthing-debian.sh
Executable file
12
scripts/install-syncthing-debian.sh
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Add the release PGP keys:
|
||||
sudo mkdir -p /etc/apt/keyrings
|
||||
sudo curl -L -o /etc/apt/keyrings/syncthing-archive-keyring.gpg https://syncthing.net/release-key.gpg
|
||||
|
||||
# Add the "stable" channel to your APT sources:
|
||||
echo "deb [signed-by=/etc/apt/keyrings/syncthing-archive-keyring.gpg] https://apt.syncthing.net/ syncthing stable" | sudo tee /etc/apt/sources.list.d/syncthing.list
|
||||
|
||||
# Update and install syncthing:
|
||||
sudo apt-get update
|
||||
sudo apt-get install syncthing
|
Loading…
Reference in New Issue
Block a user