Had to go and edit some parens out of image file names so my Perl/Tk image viewer could load them properly. Took me a minute or ten longer than it should have - very old code lol, like 2011'ish
for i in `ls *.jpg|grep "("`;
do
F=`echo $i | sed "sx(xx"|sed "sx)xx"`;
echo $i $F;
mv $i $F;
done
Moved ssh access from FedoraServer zone to Trusted zone using firewall-cmd.
Allowed http/https access too.
Noted that outage on our internet the other day had changed my IP address.
Fixed sub auth{} in cms3.pm to allow posting from the new IP.
firewall-cmd --zone=Trusted --add-zone=192.168.1.20
firewall-cmd --zone=Trusted --add-zone=192.168.1.20 --permanent
firewall-cmd --zone=Trusted --add-service=ssh
firewall-cmd --zone=Trusted --add-service=ssh --permanent
firewall-cmd --zone=Trusted --add-service=http
firewall-cmd --zone=Trusted --add-service=https
firewall-cmd --zone=Trusted --add-service=http --permanent
firewall-cmd --zone=Trusted --add-service=https --permanent
firewall-cmd --zone=FedoraServer --remove-service=ssh
firewall-cmd --zone=FedoraServer --remove-service=ssh --permanent
# logged in a new terminal to verify.
# note: my actual home IP isn't .1.20 =)