Files
inGraph/create-mysql-db.sh
Christian Schneemann 0e1af0d35d Accepting request 115970 from home:mopp:inGraph
I tested the package with openSUSE 12.1 and it seems to work. It was not easy to package it. There is some post installation tasks required (see INSTALL).

OBS-URL: https://build.opensuse.org/request/show/115970
OBS-URL: https://build.opensuse.org/package/show/server:monitoring/inGraph?expand=0&rev=1
2012-07-21 13:40:19 +00:00

8 lines
184 B
Bash

#!/bin/bash
mysql -u root <<EOF
create database ingraph;
grant usage on *.* to 'ingraph'@'localhost' identified by 'ingraph';
grant all on ingraph.* to 'ingraph'@'localhost';
quit
EOF