Hide Forgot
The foghorn.spec file has a syntax error in the preun scriptlet. %preun if [ "$1" == 0 ] then; /sbin/chkconfig --del foghorn fi This causes package updates to file. The scriptlet should actually be: %preun if [ "$1" == 0 ] ; then /sbin/chkconfig --del foghorn fi