Want more timely Centmin Mod News Updates?
Become a Member

grep: 08: No such file or directory

Discussion in 'Install & Upgrades or Pre-Install Questions' started by pamamolf, Jun 9, 2014.

  1. pamamolf

    pamamolf Well-Known Member

    4,023
    421
    83
    May 31, 2014
    Ratings:
    +817
    Local Time:
    11:27 PM
    Nginx-1.17.x
    MariaDB 10.3.x
    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

     
  2. rdan

    rdan Well-Known Member

    5,421
    1,386
    113
    May 25, 2014
    Ratings:
    +2,167
    Local Time:
    4:27 AM
    Mainline
    10.2
    Can be ignored, as NSD didn't install I think.
     
  3. eva2000

    eva2000 Administrator Staff Member

    50,489
    11,667
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,095
    Local Time:
    6:27 AM
    Nginx 1.25.x
    MariaDB 10.x
    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
     
  4. pamamolf

    pamamolf Well-Known Member

    4,023
    421
    83
    May 31, 2014
    Ratings:
    +817
    Local Time:
    11:27 PM
    Nginx-1.17.x
    MariaDB 10.3.x
    Ok please report back for the fix :)