I have a problem with my update system on the sme 7.0. final in servergateway mode
the link in the server-manager panel is enabled
Check for updates daily = Enabled
from the console I do "yum clean" and get only this error
/sbin/e-smith/yum: line 9: 4940 Segmentation fault /usr/bin/yum $@
and when I do yum update I get the same error
here is my yum file
#!/bin/sh
echo "=============================================================="
echo "WARNING: Additional commands may be required after running yum"
echo "=============================================================="
BEFORE=$(rpm -qa | md5sum)
/usr/bin/yum $@
status=$?
AFTER=$(rpm -qa | md5sum)
if [ "$BEFORE" = "$AFTER" ]
then
echo "================================================================"
echo "No new rpms were installed. No additional commands are required."
echo "================================================================"
else
echo "=============================================================="
echo "WARNING: You now need to run BOTH of the following commands"
echo "to ensure consistent system state:"
echo
echo "signal-event post-upgrade; signal-event reboot"
echo
echo "You should run these commands unless you are certain that"
echo "yum made no changes to your system."
echo "=============================================================="
fi
exit $status