-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
port-shifter.sh
37 lines (27 loc) · 1.21 KB
/
port-shifter.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
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
# PORT SHIFTER for client.toml, app.toml and config.toml files (Wrapper variant)
# Original: https://github.com/zenodeapp/port-shifter
# ZENODE (https://zenode.app)
# Root of repository
ROOT=$(cd "$(dirname "$0")"/.. && pwd)
# Source the _variables.sh file
. "$ROOT/_variables.sh"
# Where the downloaded script has to be saved
SAVE_AS="$ROOT/tools/_port-shifter.sh"
# Repository where the port shifter resides
VERSION=v1.0.1 # Added versioning for non-breaking changes and security measures
EXTERNAL_REPO=https://raw.githubusercontent.com/zenodeapp/port-shifter/$VERSION
# quick-shift.sh (simple variant, $1 is <port_increment_value>, e.g.: 1000)
# See https://github.com/zenodeapp/port-shifter/blob/v1.0.1/quick-shift.sh
wget -O $SAVE_AS $EXTERNAL_REPO/quick-shift.sh >/dev/null 2>&1
# shift-wizard.sh (more advanced, if you prefer to edit individual ports)
# See: https://github.com/zenodeapp/port-shifter/blob/v1.0.1/shift-wizard.sh
# wget -O $SAVE_AS $EXTERNAL_REPO/shift-wizard.sh
# Execute script
sh $SAVE_AS "$CONFIG_DIR" $1
# Capture the exit status of the script execution
RESULT=$?
# Cleanup
rm $SAVE_AS
# Exit the script with the captured exit status, indicating success (0) or failure (non-zero)
exit $RESULT