From 90470440a7dcff01d92192d32dd3eb0eb4072890 Mon Sep 17 00:00:00 2001 From: bol-van Date: Sat, 4 Oct 2025 18:26:07 +0300 Subject: [PATCH] blockcheck: print PRETTY_NAME from /etc/os-release --- blockcheck.sh | 4 ++++ docs/changes.txt | 1 + 2 files changed, 5 insertions(+) diff --git a/blockcheck.sh b/blockcheck.sh index 9a445ffe..f2d2138d 100755 --- a/blockcheck.sh +++ b/blockcheck.sh @@ -412,6 +412,10 @@ check_system() else uname -a fi + [ -f /etc/os-release ] && { + . /etc/os-release + [ -n "$PRETTY_NAME" ] && echo "distro: $PRETTY_NAME" + } echo firewall type is $FWTYPE echo CURL=$CURL $CURL --version diff --git a/docs/changes.txt b/docs/changes.txt index 5263b85f..6ea7a5a5 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -552,5 +552,6 @@ nfqws: --dpi-desync-fakedsplit-mod=altorder for fakedsplit/fakeddisorder nfqws: --dpi-desync-hostfakesplit-mod=altorder nfqws: fakedsplit/fakeddisorder normalize fake split pattern offset to reasm offset nfqws: optimize ipv4 ip_id. apply ip_id on all OS the same way. +blockcheck: print PRETTY_NAME from /etc/os-release blockcheck: new strategies blockcheck: curl test simulation : SIMULATE=1