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
8 lines
184 B
Bash
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
|