1
0
mirror of https://github.com/bol-van/zapret.git synced 2025-05-24 22:32:58 +03:00

Compare commits

...

2 Commits

Author SHA1 Message Date
bol-van
94c848eab5 install_easy: use vim editor 2024-08-13 15:20:34 +03:00
bol-van
6e061c8fc9 update bins and upx ver 2024-08-13 15:13:55 +03:00
19 changed files with 2 additions and 2 deletions
binaries
aarch64
arm
mac64
mips32r1-lsb
mips32r1-msb
mips64r2-msb
ppc
x86
x86_64
common

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -39,7 +39,7 @@ edit_file()
# $1 - file name # $1 - file name
local ed="$EDITOR" local ed="$EDITOR"
[ -n "$ed" ] || { [ -n "$ed" ] || {
for e in mcedit nano vi; do for e in mcedit nano vim vi; do
exists "$e" && { exists "$e" && {
ed="$e" ed="$e"
break break
@ -685,4 +685,4 @@ select_fwtype()
} }
echo select firewall type : echo select firewall type :
ask_list FWTYPE "iptables nftables" "$FWTYPE" && write_config_var FWTYPE ask_list FWTYPE "iptables nftables" "$FWTYPE" && write_config_var FWTYPE
} }