Skip to content

Commit 75e9a7c

Browse files
committed
Updated to rclone 1.37
1 parent 570d80a commit 75e9a7c

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
These scripts are created to have your media synced between your cloud- and local store. All media is always encrypted before being uploaded.
22
This also means if you loose your encryption keys you can't read your media.
33

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.**
55

66
There is a setup file, `setup.sh`, to install the necessary stuff automatically. This has only been tested on Ubuntu 16.04+.
77

@@ -61,7 +61,7 @@ To install the necessary stuff manually do the following:
6161
1. Install unionfs-fuse.
6262
2. Install bc.
6363
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).
6565
5. Install [Plexdrive 4.0.0](https://github.com/dweidenfeld/plexdrive/releases/download/4.0.0/plexdrive-linux-amd64).
6666
6. Create the folders pointing, in the config file, to `local_decrypt_dir` and `plexdrive_temp_dir`.
6767
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.

setup.sh

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
###################################
66
########## DOWNLOADS ##########
77
# 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}"
1111

1212
# Plexdrive
13-
_plexdrive_url="https://github.com/dweidenfeld/plexdrive/releases/download/4.0.0/plexdrive-linux-amd64"
1413
_plexdrive_bin="plexdrive-linux-amd64"
14+
_plexdrive_url="https://github.com/dweidenfeld/plexdrive/releases/download/4.0.0/${_plexdrive_bin}"
1515
###################################
1616

1717
apt-get update
@@ -21,15 +21,15 @@ apt-get install screen -y
2121
apt-get install unzip -y
2222
apt-get install fuse -y
2323

24-
if [ ! -d "${rclone_dir}" ]; then
25-
mkdir "${rclone_dir}"
24+
if [ ! -d "${_rclone_release}" ]; then
25+
mkdir "${_rclone_release}"
2626
fi
2727
wget "${_rclone_url}"
2828
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}/"
3131
rm -rf "${_rclone_zip}"
32-
rm -rf "${_rclone_dir}"
32+
rm -rf "${_rclone_release}"
3333

3434

3535
if [ ! -d "${plexdrive_dir}" ]; then

0 commit comments

Comments
 (0)