Using the latest beta version at the end of installation i got this error: Code: -------------------------------------------------------- Stopping NSD service: Stopping nsd: Disabling NSD service: -------------------------------------------------------- In future to re-enable NSD service type these 2 commands: service nsd start chkconfig nsd on -------------------------------------------------------- grep: 08: No such file or directory ************************************************* * Centmin Mod install completed.... ************************************************* What is this error ? grep: 08: No such file or directory
yeah can be ignored it's line 160 in inc/centminfinish.inc Code: grep -h $DATENOW /var/log/yum.log >> ${CENTMINLOGDIR}/centminmod_${SCRIPT_VERSION}_${DT}_yum-log.log /var/log/yum.log has strict file permissions so you can't grep the log from a script it seems. Need to fix that or could be something wrong with that line I'm changing it to the following to see Code: grep -h $DATENOW /var/log/yum.log | tee -a ${CENTMINLOGDIR}/centminmod_${SCRIPT_VERSION}_${DT}_yum-log.log