mirror of
https://github.com/MariaDB/server.git
synced 2025-07-08 17:02:21 +03:00
15 lines
146 B
Bash
Executable File
15 lines
146 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DbCreate -l
|
|
ret=$?
|
|
if [ $ret -ne 0 ]
|
|
then
|
|
echo "DbCreate failed"
|
|
exit $ret
|
|
fi
|
|
|
|
DbAsyncGenerator -time 300 -p 10 $*
|
|
ret=$?
|
|
exit $ret
|
|
|