Skip to content

Commit c5d661f

Browse files
committed
feat: Add variables to modify the installation path
1. $DAT_PATH can be modified to /usr/local/share/v2ray/ . 2. $JSON_PATH can be modified to /etc/v2ray/ . 3. However, after modification, you need to modify the unit file yourself.
1 parent 83105f9 commit c5d661f

File tree

2 files changed

+31
-24
lines changed

2 files changed

+31
-24
lines changed

install-dat-release.sh

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
# 0 0 * * * /usr/local/bin/install-dat-release > /dev/null 2>&1
1515

16+
# You can modify it to /usr/local/share/v2ray/
1617
V2RAY="/usr/local/lib/v2ray/"
1718
DOWNLOAD_LINK_GEOIP="https://github.com/v2ray/geoip/releases/latest/download/geoip.dat"
1819
DOWNLOAD_LINK_GEOSITE="https://github.com/v2ray/domain-list-community/releases/latest/download/dlc.dat"

install-release.sh

+30-24
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@
1212
# If the script executes incorrectly, go to:
1313
# https://github.com/v2fly/fhs-install-v2ray/issues
1414

15+
# If you modify the following variables, you also need to modify the unit file yourself:
16+
# You can modify it to /usr/local/share/v2ray/
17+
DAT_PATH='/usr/local/lib/v2ray/'
18+
# You can modify it to /etc/v2ray/
19+
JSON_PATH='/usr/local/etc/v2ray/'
20+
1521
check_if_running_as_root() {
1622
# If you want to run as another user, please modify $UID to be owned by this user
1723
if [[ "$UID" -ne '0' ]]; then
@@ -336,26 +342,26 @@ install_file() {
336342
if [[ "$NAME" == 'v2ray' ]] || [[ "$NAME" == 'v2ctl' ]]; then
337343
install -m 755 "${TMP_DIRECTORY}$NAME" "/usr/local/bin/$NAME"
338344
elif [[ "$NAME" == 'geoip.dat' ]] || [[ "$NAME" == 'geosite.dat' ]]; then
339-
install -m 644 "${TMP_DIRECTORY}$NAME" "/usr/local/lib/v2ray/$NAME"
345+
install -m 644 "${TMP_DIRECTORY}$NAME" "${DAT_PATH}$NAME"
340346
fi
341347
}
342348

343349
install_v2ray() {
344-
# Install V2Ray binary to /usr/local/bin/ and /usr/local/lib/v2ray/
350+
# Install V2Ray binary to /usr/local/bin/ and $DAT_PATH
345351
install_file v2ray
346352
install_file v2ctl
347-
install -d /usr/local/lib/v2ray/
353+
install -d "$DAT_PATH"
348354
# If the file exists, geoip.dat and geosite.dat will not be installed or updated
349-
if [[ ! -f '/usr/local/lib/v2ray/.undat' ]]; then
355+
if [[ ! -f "${DAT_PATH}.undat" ]]; then
350356
install_file geoip.dat
351357
install_file geosite.dat
352358
fi
353359

354-
# Install V2Ray configuration file to /usr/local/etc/v2ray/
355-
if [[ ! -d '/usr/local/etc/v2ray/' ]]; then
356-
install -d /usr/local/etc/v2ray/
360+
# Install V2Ray configuration file to $JSON_PATH
361+
if [[ ! -d "$JSON_PATH" ]]; then
362+
install -d "$JSON_PATH"
357363
for BASE in 00_log 01_api 02_dns 03_routing 04_policy 05_inbounds 06_outbounds 07_transport 08_stats 09_reverse; do
358-
echo '{}' > "/usr/local/etc/v2ray/$BASE.json"
364+
echo '{}' > "${JSON_PATH}$BASE.json"
359365
done
360366
CONFDIR='1'
361367
fi
@@ -441,7 +447,7 @@ remove_v2ray() {
441447
NAME="$1"
442448
rm /usr/local/bin/v2ray
443449
rm /usr/local/bin/v2ctl
444-
rm -r /usr/local/lib/v2ray/
450+
rm -r "$DAT_PATH"
445451
rm /etc/systemd/system/v2ray.service
446452
rm /etc/systemd/system/[email protected]
447453
if [[ "$?" -ne '0' ]]; then
@@ -450,14 +456,14 @@ remove_v2ray() {
450456
else
451457
echo 'removed: /usr/local/bin/v2ray'
452458
echo 'removed: /usr/local/bin/v2ctl'
453-
echo 'removed: /usr/local/lib/v2ray/'
459+
echo "removed: $DAT_PATH"
454460
echo 'removed: /etc/systemd/system/v2ray.service'
455461
echo 'removed: /etc/systemd/system/[email protected]'
456462
echo 'Please execute the command: systemctl disable v2ray'
457463
echo "You may need to execute a command to remove dependent software: $PACKAGE_MANAGEMENT_REMOVE curl unzip"
458464
echo 'info: V2Ray has been removed.'
459465
echo 'info: If necessary, manually delete the configuration and log files.'
460-
echo 'info: e.g., /usr/local/etc/v2ray/ and /var/log/v2ray/ ...'
466+
echo "info: e.g., $JSON_PATH and /var/log/v2ray/ ..."
461467
exit 0
462468
fi
463469
else
@@ -534,21 +540,21 @@ main() {
534540
echo 'installed: /usr/local/bin/v2ray'
535541
echo 'installed: /usr/local/bin/v2ctl'
536542
# If the file exists, the content output of installing or updating geoip.dat and geosite.dat will not be displayed
537-
if [[ ! -f '/usr/local/lib/v2ray/.undat' ]]; then
538-
echo 'installed: /usr/local/lib/v2ray/geoip.dat'
539-
echo 'installed: /usr/local/lib/v2ray/geosite.dat'
543+
if [[ ! -f "${DAT_PATH}.undat" ]]; then
544+
echo "installed: ${DAT_PATH}geoip.dat"
545+
echo "installed: ${DAT_PATH}geosite.dat"
540546
fi
541547
if [[ "$CONFDIR" -eq '1' ]]; then
542-
echo 'installed: /usr/local/etc/v2ray/00_log.json'
543-
echo 'installed: /usr/local/etc/v2ray/01_api.json'
544-
echo 'installed: /usr/local/etc/v2ray/02_dns.json'
545-
echo 'installed: /usr/local/etc/v2ray/03_routing.json'
546-
echo 'installed: /usr/local/etc/v2ray/04_policy.json'
547-
echo 'installed: /usr/local/etc/v2ray/05_inbounds.json'
548-
echo 'installed: /usr/local/etc/v2ray/06_outbounds.json'
549-
echo 'installed: /usr/local/etc/v2ray/07_transport.json'
550-
echo 'installed: /usr/local/etc/v2ray/08_stats.json'
551-
echo 'installed: /usr/local/etc/v2ray/09_reverse.json'
548+
echo "installed: ${JSON_PATH}00_log.json"
549+
echo "installed: ${JSON_PATH}01_api.json"
550+
echo "installed: ${JSON_PATH}02_dns.json"
551+
echo "installed: ${JSON_PATH}03_routing.json"
552+
echo "installed: ${JSON_PATH}04_policy.json"
553+
echo "installed: ${JSON_PATH}05_inbounds.json"
554+
echo "installed: ${JSON_PATH}06_outbounds.json"
555+
echo "installed: ${JSON_PATH}07_transport.json"
556+
echo "installed: ${JSON_PATH}08_stats.json"
557+
echo "installed: ${JSON_PATH}09_reverse.json"
552558
fi
553559
if [[ "$LOG" -eq '1' ]]; then
554560
echo 'installed: /var/log/v2ray/'

0 commit comments

Comments
 (0)