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
AgeCommit message (Collapse)Author
2017-05-31Fixed and improved some existing checks and SystemCheck libraryGabriel Mazetto
2017-05-31Add ActiveUsers CheckGabriel Mazetto
2017-05-31Refactor gitlab:app:checks to use SystemCheckGabriel Mazetto
2017-05-31WIP SystemCheck library for executing checks from a rake taskGabriel Mazetto
2017-04-12Fix the `gitlab:gitlab_shell:check` taskRémy Coutable
Make the `gitlab:gitlab_shell:check` task check that the repositories storage path are owned by the `root` group Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-03-29There might be ps utilities out there, that assume 80chars insteadSebastian Reitenbach
of unlimited width if they cannot detect terminal size, therefore force unlimited terminal size when checking processes via ps.
2017-03-03Update storage settings to allow extra values per shardAlejandro Rodríguez
This will be necessary when adding gitaly settings. This version doesn't make any functional changes, but allows us to include this breaking change in 9.0 and add the needed extra settings in the future with backwards compatibility
2017-02-23Don’t exclude some file in lib from rubocopDouwe Maan
2017-02-21Fix incomming email check task to use same patch we did in mail_roomGabriel Mazetto
2016-11-09Introduce better credential and error checking to `rake gitlab:ldap:check`Drew Blessing
It was previously possible for invalid credential errors to go unnoticed in this task. Users would believe everything was configured correctly and then sign in would fail with 'invalid credentials'. This adds a specific bind check, plus catches errors connecting to the server. Also, specs :)
2016-09-25Move reply by email docs to a new locationAchilleas Pipinellis
[ci skip]
2016-08-11Use `File::exist?` instead of `File::exists?`bogdanvlviv
Since version ruby-2.2.0, method `File::exists?` is deprecated.
2016-08-10Rename `run` task helper method to prevent conflict with StateMachineRobert Speicher
This prevents the following message from appearing whenever running a Rake task: Instance method "run" is already defined in Object, use generic helper instead or set StateMachines::Machine.ignore_method_conflicts = true.
2016-07-20Use limit parameter rather than hardcoded valueM. Ricketts
2016-06-30Refactor repository paths handling to allow multiple git mount pointsAlejandro Rodríguez
2016-06-03Replace colorize gem with rainbow.Connor Shea
Colorize is a gem licensed under the GPLv2, so we can’t use it in GitLab without relicensing GitLab under the terms of the GPL. Rainbow is licensed under the MIT license and does the exact same thing as Colorize, so Rainbow was added in place of Colorize. The syntax is slightly different for Rainbow vs. Colorize, and was updated in accordance. The gem is still a dependency of Spinach, so it’s included in the development/test environments, but won’t be packaged with the actual product, and therefore doesn’t require we relicense the product. An attempt at relicensing Colorize was made, but didn’t succeed as the library owner never responded. Rainbow library: https://github.com/sickill/rainbow Relevant issue regarding licensing in GitLab's gems: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3775
2016-05-19Fixed advice on invalid permissions on upload pathJazz
2016-03-25Improve and finish the fallback to the In-Reply-To and References header for ↵Rémy Coutable
the reply-by-email feature A few things to note: - The IncomingEmail feature is now enabled even without a correctly-formatted sub-address - Message-ID for new thread mail are kept the same so that subsequent notifications to this thread are grouped in the thread by the email service that receives the notification (i.e. In-Reply-To of the answer == Message-ID of the first thread message) - To maximize our chance to be able to retrieve the reply key, we look for it in the In-Reply-To header and the References header - The pattern for the fallback reply message id is "reply-[key]@[gitlab_host]" - Improve docs thanks to Axil
2016-03-16Bump Git version requirement to 2.7.3Douwe Maan
2016-02-29Fix `gitlab:incoming_email:check` task.Douwe Maan
2016-02-23Merge branch 'uploads-700' into 'master' Marin Jankovski
Restrict permissions on public/uploads Based on https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests/631 See merge request !2764
2016-02-17Remove remaining sqlite method callAchilleas Pipinellis
2016-02-10Remove sqlite check in raketaskAchilleas Pipinellis
2016-02-10Simplify permissions creationAchilleas Pipinellis
[ci skip]
2016-02-09Restrict permissions on public/uploadsAchilleas Pipinellis
2016-01-05Suggest prefacing find command with sudo when base permissions are wrongStan Hu
Closes #5872
2015-12-15Merge branch 'add_user_repo_integrity_rake_task' into 'master' Robert Speicher
Add user repository integrity check rake task Corrupt repositories and stuck lock files can cause weird issues in GitLab. Often we know which user is having these problems and then we have to go hunt down which repository is causing it. Several times recently that involved me running queries in the rails console to get an array of projects and then writing a quick Ruby script to loop through and run `git fsck`. This last time I also had to check for the existence of `config.lock` and ref lock files. This rake task will eliminate all of those steps and allow an admin to simply specify a username. I also added the lock file checks to the existing `gitlab:repo:check` task which goes through all projects. See merge request !2080
2015-12-15[ci skip] Add user repository integrity check rake taskDrew Blessing
2015-12-12Bump Redis requirement to 2.8 for Sidekiq 4 requirementsStan Hu
Closes #3649 [ci skip]
2015-11-04Replace all usages of `git` command with configurable binary pathRobert Speicher
Closes #3311
2015-10-19Fix regex in redis version checkBenny Schimmer
2015-10-13Make Reply by email easier to configureDouwe Maan
2015-09-22Skip check_initd_configured_correctly on omnibus installsAchilleas Pipinellis
This was causing the task `gitlab-rake gitlab:incoming_email:check` to fail.
2015-09-21Rename reply_by_email to incoming_email to prepare for the future.Douwe Maan
2015-09-07Merge branch 'upgrade-redis-required-check' into 'master'Marin Jankovski
Upgrade Redis requirement check to 2.4.0 per https://github.com/mperham/sidekiq/pull/957 Closes #2222 Closes #2445 See merge request !1251
2015-09-06Use File.join to prevent extra slash in help message from appearing. Before:Stan Hu
``` Try fixing it: sudo -u git -H /opt/gitlab/embedded/service/gitlab-shell//bin/create-hooks ```
2015-09-06Upgrade Redis requirement check to 2.4.0 per ↵Stan Hu
https://github.com/mperham/sidekiq/pull/957 Closes #2222 Closes #2445
2015-08-22Merge branch 'reply-by-email' into 'master'Robert Speicher
Reply by email Fixes #1360. It's far from done, but _it works_. See merge request !1173
2015-08-22Fix check task for development.Douwe Maan
2015-08-22Add development section to doc.Douwe Maan
2015-08-21Merge pull request #9535 from bbodenmiller/patch-3Jacob Vosmaer
check upload dir permissions
2015-08-21Fix MailRoom running check.Douwe Maan
2015-08-21Add gitlab:reply_by_email:check rake task.Douwe Maan
2015-08-17Merge branch 'master' into remove-satellitesDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-08-17check uploads dirBen Bodenmiller
Detect issues with uploads dir, e.g. permission and ownership issues with the users uploads dir. This helps troubleshoot and correct gitlab-org/omnibus-gitlab#311. Fixes gitlabhq#7500, gitlabhq#7052. Related to gitlabhq#6281.
2015-08-16Require Ruby 2.1.0 in `gitlab:app:check` taskRobert Speicher
[ci skip]
2015-08-11Revert "Merge branch 'revert-satellites' into 'master' "Dmitriy Zaporozhets
This reverts commit 5daf44b7c86e0e2641a902b1da8b01d91fa3dbfa, reversing changes made to 2f706fbd231cabe7a76a5d17ac44285aaaf8592c.
2015-08-11Revert "Merge branch 'drop-satellites'"Dmitriy Zaporozhets
This reverts commit 957e849f41d96fa9778fcdd06792d2f0274b29ab, reversing changes made to 6b9dbe9f5a175a8162abf296367f561bab3eea1a. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-08-04Merge branch 'master' into drop-satellitesDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-07-30Check that hooks directory exists before attempting to call realpathStan Hu
Closes #2121