-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·25 lines (18 loc) · 968 Bytes
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash
#################################################################################
# Copy the SyncBox script to /usr/bin and make it executable
#################################################################################
sudo cp syncbox.sh /usr/bin/syncbox.sh
sudo chmod +x /usr/bin/syncbox.sh
#################################################################################
# Copy the SyncBox service file to /etc/systemd/system and give it permissions
#################################################################################
sudo cp syncbox.service /etc/systemd/system/syncbox.service
sudo chmod 644 /etc/systemd/system/syncbox.service
#################################################################################
# Start and enable the SyncBox service
#################################################################################
sudo systemctl daemon-reload
sudo systemctl start syncbox
sudo systemctl enable syncbox
exit 0