From f10dad0e8bea1ed3e03475295596b56b198f4520 Mon Sep 17 00:00:00 2001
From: Dave Russell <39733752+007revad@users.noreply.github.com>
Date: Thu, 4 Jan 2024 22:16:53 +1100
Subject: [PATCH 1/3] Update README.md
---
README.md | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
diff --git a/README.md b/README.md
index d54dd4e..83730e1 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
-# Synology move apps
+# Synology app mover
-
-
+
+
[![](https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86)](https://github.com/sponsors/007revad)
[![committers.top badge](https://user-badge.committers.top/australia/007revad.svg)](https://user-badge.committers.top/australia/007revad)
@@ -9,6 +9,10 @@
Easily move Synology packages from one volume to another volume
+You just select the package and the destination volume and the script will stop the app, move it, update the symlinks then start the app.
+
+Handy for moving packages to an SSD volume.
+
- Supports DSM 7 and DSM 6.
### Download the script
@@ -18,7 +22,7 @@ See How to download the script f
### To run the script
```YAML
-sudo -i /volume1/scripts/syno_move_apps.sh
+sudo -i /volume1/scripts/syno_app_mover.sh
```
**Note:** Replace /volume1/scripts/ with the path to where the script is located.
@@ -29,12 +33,12 @@ If the script won't run check the following:
1. If the path to the script contains any spaces you need to enclose the path/scriptname in double quotes:
```YAML
- sudo -i "/volume1/my scripts/syno_move_apps.sh"
+ sudo -i "/volume1/my scripts/syno_app_mover.sh"
```
-2. Make sure you unpacked the zip or rar file that you downloaded and are trying to run the syno_move_apps.sh file.
+2. Make sure you unpacked the zip or rar file that you downloaded and are trying to run the syno_app_mover.sh file.
3. Set the syno_create_m2_volume.sh file as executable:
```YAML
- sudo chmod +x "/volume1/scripts/syno_move_apps.sh"
+ sudo chmod +x "/volume1/scripts/syno_app_mover.sh"
```
### DSM 7 screen shot
From 8d444e99d28c68c7c0390b9a3cd825530151ee8e Mon Sep 17 00:00:00 2001
From: Dave Russell <39733752+007revad@users.noreply.github.com>
Date: Thu, 4 Jan 2024 22:19:28 +1100
Subject: [PATCH 2/3] Update and rename syno_move_apps.sh to syno_app_mover.sh
Renamed to syno_app_mover
---
syno_move_apps.sh => syno_app_mover.sh | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
rename syno_move_apps.sh => syno_app_mover.sh (97%)
diff --git a/syno_move_apps.sh b/syno_app_mover.sh
similarity index 97%
rename from syno_move_apps.sh
rename to syno_app_mover.sh
index c1a1918..06b29b2 100644
--- a/syno_move_apps.sh
+++ b/syno_app_mover.sh
@@ -2,17 +2,17 @@
#-----------------------------------------------------------------------------------
# Easily move Synology packages from 1 volume to another volume.
#
-# Github: https://github.com/007revad/Synology_move_apps
+# Github: https://github.com/007revad/Synology_app_mover
# Script verified at https://www.shellcheck.net/
#
# To run in a shell (replace /volume1/scripts/ with path to script):
-# sudo -i /volume1/scripts/syno_move_apps.sh
+# sudo -i /volume1/scripts/syno_app_mover.sh
#-----------------------------------------------------------------------------------
-scriptver="v1.0.1"
-script=Synology_move_apps
-repo="007revad/Synology_move_apps"
-scriptname=syno_move_apps
+scriptver="v1.0.2"
+script=Synology_app_mover
+repo="007revad/Synology_app_mover"
+scriptname=syno_app_mover
# Shell Colors
From 59415e3a174202585eb7eeac969c2ebb041716f4 Mon Sep 17 00:00:00 2001
From: Dave Russell <39733752+007revad@users.noreply.github.com>
Date: Thu, 4 Jan 2024 22:19:55 +1100
Subject: [PATCH 3/3] Update CHANGES.txt
---
CHANGES.txt | 3 +++
1 file changed, 3 insertions(+)
diff --git a/CHANGES.txt b/CHANGES.txt
index 986ff43..a6a0d45 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,2 +1,5 @@
+v1.0.2
+- Renamed to syno_app_mover.
+
v1.0.1
- Initial release.