mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-19 10:20:42 +01:00
This is an initial try to make mysql tests able to run in parallel, which also hardens them against some timing problems.
6 lines
257 B
Bash
Executable File
6 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
# this script prepares a mysql instance for use by the rsyslog testbench
|
|
|
|
mysql -u root -e "CREATE USER 'rsyslog'@'localhost' IDENTIFIED BY 'testbench';"
|
|
mysql -u root -e "GRANT ALL PRIVILEGES ON *.* TO 'rsyslog'@'localhost'; FLUSH PRIVILEGES;"
|