Browse Source

ipset: script maintenance

pull/989/head
bol-van 3 months ago
parent
commit
5df9b5d109
  1. 12
      ipset/def.sh
  2. 2
      ipset/get_reestr_preresolved.sh
  3. 2
      ipset/get_reestr_preresolved_smart.sh
  4. 2
      ipset/get_reestr_resolvable_domains.sh
  5. 2
      ipset/get_refilter_domains.sh
  6. 3
      ipset/get_refilter_ipsum.sh

12
ipset/def.sh

@ -141,6 +141,18 @@ zzsize()
printf 0
fi
}
zzcopy()
{
local is_gz=0
zztest "$1" && is_gz=1
if [ "$GZIP_LISTS" = 1 -a $is_gz = 1 ]; then
cp "$1" "${2}.gz"
elif [ "$GZIP_LISTS" != 1 -a $is_gz != 1 ]; then
cp "$1" "$2"
else
zzcat "$1" | zz "$2"
fi
}
digger()
{

2
ipset/get_reestr_preresolved.sh

@ -29,7 +29,7 @@ dl()
echo list is too small : $dlsize bytes. can be bad.
exit 2
fi
zzcat "$TMPLIST" | zz "$2"
zzcopy "$TMPLIST" "$2"
rm -f "$TMPLIST"
}

2
ipset/get_reestr_preresolved_smart.sh

@ -29,7 +29,7 @@ dl()
echo list is too small : $dlsize bytes. can be bad.
exit 2
fi
zzcat "$TMPLIST" | zz "$2"
zzcopy "$TMPLIST" "$2"
rm -f "$TMPLIST"
}

2
ipset/get_reestr_resolvable_domains.sh

@ -28,7 +28,7 @@ dl()
echo list is too small : $dlsize bytes. can be bad.
exit 2
fi
zzcat "$TMPLIST" | zz "$2"
zzcopy "$TMPLIST" "$2"
rm -f "$TMPLIST"
}

2
ipset/get_refilter_domains.sh

@ -25,7 +25,7 @@ dl()
echo list is too small : $dlsize bytes. can be bad.
exit 2
fi
zzcat "$TMPLIST" | zz "$2"
zzcopy "$TMPLIST" "$2"
rm -f "$TMPLIST"
}

3
ipset/get_refilter_ipsum.sh

@ -25,8 +25,7 @@ dl()
echo list is too small : $dlsize bytes. can be bad.
exit 2
fi
# remove DOS EOL \r
zzcat "$TMPLIST" | zz "$2"
zzcopy "$TMPLIST" "$2"
rm -f "$TMPLIST"
}

Loading…
Cancel
Save