12
12
# If the script executes incorrectly, go to:
13
13
# https://github.com/v2fly/fhs-install-v2ray/issues
14
14
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
+
15
21
check_if_running_as_root () {
16
22
# If you want to run as another user, please modify $UID to be owned by this user
17
23
if [[ " $UID " -ne ' 0' ]]; then
@@ -336,26 +342,26 @@ install_file() {
336
342
if [[ " $NAME " == ' v2ray' ]] || [[ " $NAME " == ' v2ctl' ]]; then
337
343
install -m 755 " ${TMP_DIRECTORY} $NAME " " /usr/local/bin/$NAME "
338
344
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 "
340
346
fi
341
347
}
342
348
343
349
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
345
351
install_file v2ray
346
352
install_file v2ctl
347
- install -d /usr/local/lib/v2ray/
353
+ install -d " $DAT_PATH "
348
354
# 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
350
356
install_file geoip.dat
351
357
install_file geosite.dat
352
358
fi
353
359
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 "
357
363
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"
359
365
done
360
366
CONFDIR=' 1'
361
367
fi
@@ -441,7 +447,7 @@ remove_v2ray() {
441
447
NAME=" $1 "
442
448
rm /usr/local/bin/v2ray
443
449
rm /usr/local/bin/v2ctl
444
- rm -r /usr/local/lib/v2ray/
450
+ rm -r " $DAT_PATH "
445
451
rm /etc/systemd/system/v2ray.service
446
452
rm /etc/systemd/system/
[email protected]
447
453
if [[ " $? " -ne ' 0' ]]; then
@@ -450,14 +456,14 @@ remove_v2ray() {
450
456
else
451
457
echo ' removed: /usr/local/bin/v2ray'
452
458
echo ' removed: /usr/local/bin/v2ctl'
453
- echo ' removed: /usr/local/lib/v2ray/ '
459
+ echo " removed: $DAT_PATH "
454
460
echo ' removed: /etc/systemd/system/v2ray.service'
455
461
echo ' removed: /etc/systemd/system/[email protected] '
456
462
echo ' Please execute the command: systemctl disable v2ray'
457
463
echo " You may need to execute a command to remove dependent software: $PACKAGE_MANAGEMENT_REMOVE curl unzip"
458
464
echo ' info: V2Ray has been removed.'
459
465
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/ ..."
461
467
exit 0
462
468
fi
463
469
else
@@ -534,21 +540,21 @@ main() {
534
540
echo ' installed: /usr/local/bin/v2ray'
535
541
echo ' installed: /usr/local/bin/v2ctl'
536
542
# 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"
540
546
fi
541
547
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"
552
558
fi
553
559
if [[ " $LOG " -eq ' 1' ]]; then
554
560
echo ' installed: /var/log/v2ray/'
0 commit comments