2 if (( $(vercmp $2 20210603) < 0 )); then
3 local olddir=/etc/ca-certificates/trust-source/blacklist
4 local newdir=/etc/ca-certificates/trust-source/blocklist
6 > $olddir has been renamed to
10 if [[ ! -e $olddir ]]; then
12 elif [[ -e $newdir ]]; then
14 > WARNING: $newdir already exists.
15 You must migrate your blocked certificates manually.
18 mv -Tn $olddir $newdir
23 # vim:set sw=2 sts=-1 et: