1

输出以下位错误:

# Only Execute on Prod Stagesif ($stage eq 'Prod') {
if ($stage eq "Prod") {
    # If /mysql symlink exists, exit0 immediately    
    if ( -l "/mysql" ) {
        exit(0);
        }
    elsif {
        die "Did not meet expected system disk configuration";
    }
}
exit (0);

和:

syntax error at ./010MySQLDataDirectoryCheck.pl line 16, near "elsif {"
syntax error at ./010MySQLDataDirectoryCheck.pl line 19, near "}"
Execution of ./010MySQLDataDirectoryCheck.pl aborted due to compilation errors.

我到底错过了什么?

4

1 回答 1

2

...一个elsif==>else有机会吗?

于 2012-12-12T22:54:13.370 回答