File tree 2 files changed +11
-11
lines changed
2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1
1
These scripts are created to have your media synced between your cloud- and local store. All media is always encrypted before being uploaded.
2
2
This also means if you loose your encryption keys you can't read your media.
3
3
4
- ** Plexdrive version 4.0.0 and Rclone version 1.36 is used.**
4
+ ** Plexdrive version 4.0.0 and Rclone version 1.37 is used.**
5
5
6
6
There is a setup file, ` setup.sh ` , to install the necessary stuff automatically. This has only been tested on Ubuntu 16.04+.
7
7
@@ -61,7 +61,7 @@ To install the necessary stuff manually do the following:
61
61
1 . Install unionfs-fuse.
62
62
2 . Install bc.
63
63
3 . Install GNU screen.
64
- 4 . Install [ Rclone 1.36 ] ( https://downloads. rclone.org /rclone-current -linux-amd64.zip ) .
64
+ 4 . Install [ Rclone 1.37 ] ( https://github.com/ncw/ rclone/releases/download/v1.37 /rclone-v1.37 -linux-amd64 ) .
65
65
5 . Install [ Plexdrive 4.0.0] ( https://github.com/dweidenfeld/plexdrive/releases/download/4.0.0/plexdrive-linux-amd64 ) .
66
66
6 . Create the folders pointing, in the config file, to ` local_decrypt_dir ` and ` plexdrive_temp_dir ` .
67
67
7 . Run rclone bin, installed in step 4, with the parameter ` --config=RCLONE_CONFIG config ` where ` RCLONE_CONFIG ` is the variable set in the config file.
Original file line number Diff line number Diff line change 5
5
# ##################################
6
6
# ######### DOWNLOADS ##########
7
7
# Rclone
8
- _rclone_url= " https://github.com/ncw/ rclone/releases/download/v1.36/rclone -v1.36 -linux-amd64.zip "
9
- _rclone_zip=" rclone-v1.36-linux-amd64 .zip"
10
- _rclone_dir= " rclone- v1.36-linux-amd64 "
8
+ _rclone_release= " rclone-v1.37 -linux-amd64"
9
+ _rclone_zip=" ${_rclone_release} .zip"
10
+ _rclone_url= " https://github.com/ncw/ rclone/releases/download/ v1.37/ ${_rclone_zip} "
11
11
12
12
# Plexdrive
13
- _plexdrive_url=" https://github.com/dweidenfeld/plexdrive/releases/download/4.0.0/plexdrive-linux-amd64"
14
13
_plexdrive_bin=" plexdrive-linux-amd64"
14
+ _plexdrive_url=" https://github.com/dweidenfeld/plexdrive/releases/download/4.0.0/${_plexdrive_bin} "
15
15
# ##################################
16
16
17
17
apt-get update
@@ -21,15 +21,15 @@ apt-get install screen -y
21
21
apt-get install unzip -y
22
22
apt-get install fuse -y
23
23
24
- if [ ! -d " ${rclone_dir } " ]; then
25
- mkdir " ${rclone_dir } "
24
+ if [ ! -d " ${_rclone_release } " ]; then
25
+ mkdir " ${_rclone_release } "
26
26
fi
27
27
wget " ${_rclone_url} "
28
28
unzip " ${_rclone_zip} "
29
- chmod a+x " ${_rclone_dir } /rclone"
30
- cp -rf " ${_rclone_dir } /*" " ${rclone_dir } /"
29
+ chmod a+x " ${_rclone_release } /rclone"
30
+ cp -rf " ${_rclone_release } /*" " ${_rclone_release } /"
31
31
rm -rf " ${_rclone_zip} "
32
- rm -rf " ${_rclone_dir } "
32
+ rm -rf " ${_rclone_release } "
33
33
34
34
35
35
if [ ! -d " ${plexdrive_dir} " ]; then
You can’t perform that action at this time.
0 commit comments