aboutsummaryrefslogtreecommitdiffstats
path: root/community/homer-api/homer_db_init
diff options
context:
space:
mode:
Diffstat (limited to 'community/homer-api/homer_db_init')
-rw-r--r--community/homer-api/homer_db_init24
1 files changed, 0 insertions, 24 deletions
diff --git a/community/homer-api/homer_db_init b/community/homer-api/homer_db_init
deleted file mode 100644
index c80328ac6ae..00000000000
--- a/community/homer-api/homer_db_init
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh -e
-
-# HOMER database setup script
-# Copyright (c) 2017 Kaarle Ritvanen
-
-exec_sql() {
- mysql $2 < /usr/share/homer-db/$1.sql
-}
-
-exec_sql homer_databases
-exec_sql homer_user
-
-for db in configuration data statistic; do
- exec_sql schema_$db homer_$db
-done
-
-homer_rotate
-
-[ "$1" = -r ] || exit 0
-
-mysql <<EOF
-CREATE USER 'homer_user' IDENTIFIED BY 'homer_password';
-GRANT SELECT ON homer_data.* TO 'homer_user';
-EOF