summaryrefslogtreecommitdiffstats
path: root/devtools/prep-mysql-db.sh
blob: 5f94a3d42504361f7acc60e33e493c6c2f801bcd (plain)
1
2
3
4
5
#!/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;"