5 lines
67 B
Bash
Executable file
5 lines
67 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
! [ -z "$(netstat -tuln | grep :3306)" ]
|
|
exit $?
|