summaryrefslogtreecommitdiffstats
path: root/docker/scripts/bugzilla_config.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/scripts/bugzilla_config.sh')
-rwxr-xr-xdocker/scripts/bugzilla_config.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/docker/scripts/bugzilla_config.sh b/docker/scripts/bugzilla_config.sh
deleted file mode 100755
index d1ca0db0e..000000000
--- a/docker/scripts/bugzilla_config.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-cd $BUGZILLA_ROOT
-
-# Start and initialize database
-/usr/bin/mysqld_safe &
-sleep 5
-mysql -u root mysql -e "GRANT ALL PRIVILEGES ON *.* TO bugs@localhost IDENTIFIED BY 'bugs'; FLUSH PRIVILEGES;"
-mysql -u root mysql -e "CREATE DATABASE bugs CHARACTER SET = 'utf8';"
-
-# Setup default Bugzilla database
-perl checksetup.pl /files/checksetup_answers.txt
-perl checksetup.pl /files/checksetup_answers.txt
-perl /scripts/generate_bmo_data.pl
-
-# Shutdown database
-mysqladmin -u root shutdown