Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tasks/gitlab/setup.rake')
-rw-r--r--lib/tasks/gitlab/setup.rake24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/tasks/gitlab/setup.rake b/lib/tasks/gitlab/setup.rake
deleted file mode 100644
index 8b4ccdfc3fe..00000000000
--- a/lib/tasks/gitlab/setup.rake
+++ /dev/null
@@ -1,24 +0,0 @@
-namespace :gitlab do
- desc "GITLAB | Setup production application"
- task setup: :environment do
- setup_db
- end
-
- def setup_db
- warn_user_is_not_gitlab
-
- unless ENV['force'] == 'yes'
- puts "This will create the necessary database tables and seed the database."
- puts "You will lose any previous data stored in the database."
- ask_to_continue
- puts ""
- end
-
- Rake::Task["db:setup"].invoke
- Rake::Task["add_limits_mysql"].invoke
- Rake::Task["db:seed_fu"].invoke
- rescue Gitlab::TaskAbortedByUserError
- puts "Quitting...".red
- exit 1
- end
-end