mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
8 lines
230 B
PHP
8 lines
230 B
PHP
--echo Resuming node ...
|
|
--perl
|
|
my $pid_filename = $ENV{'_SUSPEND_NODE_PIDFILE'};
|
|
my $mysqld_pid = `cat $pid_filename`;
|
|
chomp($mysqld_pid);
|
|
system("kill -SIGCONT $mysqld_pid");
|
|
exit(0);
|
|
EOF
|