Thanks for the info, Webhostinghelps.
I am concerned about the significance of the error appearing at that particular part of the mysqlup script, and am wondering if it represents a problem I need to address.
I'm not an expert on bash scripts, but it looks like the error is generated somewhere in the mysqlup script around this point judging by the lines that precede and follow it:
Code:
my $touchmysql = 0;
if ( $updated > 0 ) {
checkselinux();
system '/scripts/perlinstaller', '--force', 'DBD::mysql';
system '/scripts/securemysql', '-qFa', 'removelockntmp';
$touchmysql = 1;
}
my $mysqld = cPScript::DbUtils::find_mysqld();
my $mysqld_mtime = (stat($mysqld))[9] || 0;
my $mysqlup_mtime = (stat('/scripts/mysqlup'))[9] || 0;
if ( $mysqld_mtime < $mysqlup_mtime ) {
$touchmysql = 1;
}
if ($touchmysql) {
cPScript::FileUtils::touchfile($mysqld);
}
print "Install Complete\n";
When I submitted the original question, I was hoping someone familiar with the mysqlup script could tell me if the error was something to worry about, and how to fix the underlying problem, if any.