BigW Consortium Gitlab

  1. 21 Jun, 2017 1 commit
  2. 27 Apr, 2017 1 commit
  3. 05 Apr, 2017 1 commit
    • Handle SSH keys that have multiple spaces between each marker · 54849afc
      Stan Hu authored
      Notice what happens when a user adds a key with a space in between:
      
      ```
      irb(main):004:0> 'ssh-rsa  foobar'.split(/ /)
      => ["ssh-rsa", "", "foobar"]
      ```
      
      This would cause gitlab-shell to receive a blank argument for the actual
      key, leading to users unable to login.
  4. 03 Apr, 2017 3 commits
  5. 01 Mar, 2017 1 commit
  6. 23 Feb, 2017 5 commits
  7. 16 Feb, 2017 1 commit
  8. 14 Feb, 2017 1 commit
  9. 27 Jan, 2017 1 commit
  10. 04 Nov, 2016 1 commit
  11. 13 Oct, 2016 1 commit
  12. 06 Oct, 2016 1 commit
  13. 16 Sep, 2016 1 commit
  14. 13 Sep, 2016 1 commit
  15. 26 Jul, 2016 1 commit
  16. 30 Jun, 2016 2 commits
  17. 03 Jun, 2016 2 commits
  18. 08 May, 2016 1 commit
    • Enable the Rubocop DeprecatedClassMethods cop · 9cc0937b
      Connor Shea authored
      This reports uses of `File.exists?` and `Dir.exists?`, which were both
      deprecated in Ruby and will eventually be removed in favor of
      `.exist?`. Also fixes all existing uses of the deprecated methods.
  19. 04 May, 2016 1 commit
  20. 15 Apr, 2016 3 commits
  21. 04 Feb, 2016 1 commit
  22. 02 Feb, 2016 1 commit
  23. 15 Dec, 2015 1 commit
  24. 18 Nov, 2015 1 commit
  25. 21 Oct, 2015 1 commit
  26. 09 Oct, 2015 1 commit
  27. 11 Aug, 2015 2 commits
  28. 15 Jul, 2015 1 commit
  29. 03 Jun, 2015 1 commit
    • Move repository when project is removed · 97ff86e0
      Dmitriy Zaporozhets authored
      Ths commit does next:
      
      * When we remove project we move repository to path+deleted.git
      * Then we schedule removal of path+deleted with sidekiq
      * If repository move failed we abort project removal
      
      This should help us with NFS issue when project get removed but
      repository stayed. The full explanation of problem is below:
      
      * rm -rf project.git
      * rm -rf removes project.git/objects/foo
      * NFS server renames foo to foo.nfsXXXX because some NFS client (think
      * Unicorn) still has the file open
      * rm -rf exits, but project.git/objects/foo.nfsXXX still exists
      * Unicorn closes the file, the NFS client closes the file (foo), and the
      * NFS server removes foo.nfsXXX
      * the directory project.git/objects/ still exists => problem
      
      So now we move repository and even if repository removal failed
      
      Repository directory is moved so no bugs with project removed but
      repository directory taken. User still able to create new project with
      same name. From administrator perspective you can easily find stalled
      repositories by searching `*+deleted.git`
      Signed-off-by: 's avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>