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:
authorrandx <dmitriy.zaporozhets@gmail.com>2012-08-21 21:14:06 +0400
committerrandx <dmitriy.zaporozhets@gmail.com>2012-08-21 21:14:06 +0400
commitc625293b995cf21a1b551cecaac3cb742fcb2e66 (patch)
tree3680e0658fcaaee990867bdd690bc1f7c78d394a /lib/tasks/gitlab/setup.rake
parent2e7ca8c866179e78866cba1659dee45185911f5a (diff)
Handle post-receive files via gitolite, not gitlab
Diffstat (limited to 'lib/tasks/gitlab/setup.rake')
-rw-r--r--lib/tasks/gitlab/setup.rake7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/setup.rake b/lib/tasks/gitlab/setup.rake
index d60e73e9ac3..21ce5d7083c 100644
--- a/lib/tasks/gitlab/setup.rake
+++ b/lib/tasks/gitlab/setup.rake
@@ -1,7 +1,12 @@
namespace :gitlab do
namespace :app do
desc "GITLAB | Setup production application"
- task :setup => ['db:setup', 'db:seed_fu', 'gitlab:app:enable_automerge']
+ task :setup => [
+ 'db:setup',
+ 'db:seed_fu',
+ 'gitlab:gitolite:write_hooks',
+ 'gitlab:app:enable_automerge'
+ ]
end
end