|
#Stronger Crypto |
|
if [ -x /usr/bin/update-crypto-policies ]; then |
|
echo "Do you want stricter crypto policies?"; |
|
select yn in "Yes" "No"; do |
|
case $yn in |
|
Yes ) |
|
update-crypto-policies --set NEXT; |
|
break;; |
|
No ) |
|
update-crypto-policies --set DEFAULT; #:TEST-PQ |
|
break;; |
|
esac |
|
done |
|
fi; |
But the manpage in Fedora 41 says
NEXT
The NEXT policy is just an alias to the DEFAULT policy.
Brace/brace/usr/bin/brace-supplemental-changes
Lines 112 to 125 in 163e1d4
But the manpage in Fedora 41 says