summaryrefslogtreecommitdiff
path: root/roaming.sh
blob: 17b67b3981880e8b96c9b3aca76255dd0c1abd08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env sh

set -x

case $1 in
	"enable")
		systemctl --user stop syncthing
		sudo systemctl start tinc
		;;
	"disable")
		systemctl --user start syncthing
		sudo systemctl stop tinc
		;;
	*)
		echo "Invalid action."
		echo "Usage: $0 enable|disable"
		exit
		;;
esac