fixed a typo in the calls to chkconfig

This commit is contained in:
Steve Dickson 2006-07-28 18:17:18 +00:00
parent 47ada2868f
commit 33ac50bfeb

View File

@ -50,11 +50,11 @@ install -m 755 etc/cachefilesd.initd %{buildroot}%{_sysconfdir}/rc.d/init.d/cach
%clean
%post
/sbin/chkconfig --add ${name}
/sbin/chkconfig --add %{name}
%preun
if [ $1 -eq 0 ]; then
/sbin/chkconfig --del ${name}
/sbin/chkconfig --del %{name}
fi