epicyon/scripts/images

8 lines
372 B
Plaintext
Raw Normal View History

2023-09-12 16:27:16 +00:00
#!/bin/bash
2026-05-07 12:40:11 +00:00
journalctl -u epicyon | grep 'image binary\|favicon is not an image\|image size before\|watermark failed\|image metadata removal\|media saved to\|failed to restore backup image\|failed to rename image\|media could not be saved to\|failed to delete backup image' > .image.txt
2023-09-12 16:27:16 +00:00
if [ ! -f .image.txt ]; then
echo 'No image warnings'
else
cat .image.txt
fi