* As root, use a text editor to open the /etc/rc.d/rc.M.
* Save As /etc/cron.daily/pango.
* Delete everything in the newly saved /etc/cron.daily/pango except the header and the pango snippets.
* Save.
You should end up with something like this:
Code:
#!/bin/sh
# /etc/cron.daily/pango
# These GTK+/pango files need to be kept up to date for
# proper input method, pixbuf loaders, and font support.
if [ -x /usr/bin/update-gtk-immodules ]; then
/usr/bin/update-gtk-immodules --verbose
fi
if [ -x /usr/bin/update-gdk-pixbuf-loaders ]; then
/usr/bin/update-gdk-pixbuf-loaders --verbose
fi
if [ -x /usr/bin/update-pango-querymodules ]; then
/usr/bin/update-pango-querymodules --verbose
fi
# All done.
Then be sure to comment out the same snippet in /etc/rc.d/rc.M.