Skip to content

Commit

Permalink
Merge pull request thuantran#433 from thuantran/dev
Browse files Browse the repository at this point in the history
v2.5.0
  • Loading branch information
jumpsmm7 authored Oct 27, 2023
2 parents b420265 + 9ebb33b commit cd492ae
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
7 changes: 5 additions & 2 deletions gen/manager
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,10 @@ netcheck() {
proc_optimizations () {
{ printf "4194304" > /proc/sys/kernel/pid_max; }; # Ensure max PID coverage
{ printf "2" > /proc/sys/vm/overcommit_memory; }; # Ensure ratio algorithm checks properly work including swap.
{ printf "2500000" > /proc/sys/net/core/rmem_max; }; # Ensure UDP receive buffer set to 2.5M.
{ printf "60" > /proc/sys/vm/swappiness; }; # Ensure swappiness is set for more readily usability.
{ printf "50" > /proc/sys/vm/overcommit_ratio; }; # Ensure a proper overcommit policy is available.
{ printf "4194304" > /proc/sys/net/core/rmem_max; }; # Ensure UDP receive buffer set to 4M.
{ printf "1048576" > /proc/sys/net/core/wmem_max; }; # Ensure 1M for wmem_max.
{ printf "0" > /proc/sys/net/ipv4/icmp_ratelimit; }; # Ensure Control over MTRS
{ printf "256" > /proc/sys/net/ipv4/neigh/default/gc_thresh1; }; # Increase ARP cache sizes and GC thresholds
{ printf "1024" > /proc/sys/net/ipv4/neigh/default/gc_thresh2; }; # Increase ARP cache sizes and GC thresholds
Expand All @@ -104,7 +107,7 @@ proc_optimizations () {
{ printf "256" > /proc/sys/net/ipv6/neigh/default/gc_thresh1; };
{ printf "1024" > /proc/sys/net/ipv6/neigh/default/gc_thresh2; };
{ printf "2048" > /proc/sys/net/ipv6/neigh/default/gc_thresh3; };
fi
fi;
}

service_wait () {
Expand Down
2 changes: 1 addition & 1 deletion gen/manager.md5sum
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6091673a4c5e53abbc4694f817d97f44
809c0619e029ea07350e6787427f8a8e
7 changes: 5 additions & 2 deletions installer
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#██║████╗ ██║██╔════╝╚══██╔══╝██╔══██╗██║ ██║ ██╔════╝██╔══██╗ bigeyes0x0 #
#██║██╔██╗ ██║███████╗ ██║ ███████║██║ ██║ █████╗ ██████╔╝ Current Maintainer: #
#██║██║╚██╗██║╚════██║ ██║ ██╔══██║██║ ██║ ██╔══╝ ██╔══██╗ SomeWhereOverTheRainBow #
#██║██║ ╚████║███████║ ██║ ██║ ██║███████╗███████╗███████╗██║ ██║ v2.4.9 #
#██║██║ ╚████║███████║ ██║ ██║ ██║███████╗███████╗███████╗██║ ██║ v2.5.0 #
#╚═╝╚═╝ ╚═══╝╚══════╝ ╚═╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚══════╝╚═╝ ╚═╝ #
###################################################################################################################

Expand All @@ -27,7 +27,10 @@
# shellcheck disable=SC3057
# shellcheck disable=SC3060

DI_VERSION="v2.4.9"
export LC_ALL=C
export PATH="/sbin:/bin:/usr/sbin:/usr/bin:$PATH"

DI_VERSION="v2.5.0"
export DI_VERSION

readonly LATEST_URL="https://api.github.com/repos/jedisct1/dnscrypt-proxy/releases/latest"
Expand Down
2 changes: 1 addition & 1 deletion installer.md5sum
Original file line number Diff line number Diff line change
@@ -1 +1 @@
31ac8fc0ea04687df1a0dd30d35c39c8
90a81d26625dac59641bbf4bfa9159b5

0 comments on commit cd492ae

Please sign in to comment.