Commit 03fd5919 authored by Robert Schilling's avatar Robert Schilling

Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce

parents e34f18a8 4ad9b49a
Please view this file on the master branch, on stable branches it's out of date. Please view this file on the master branch, on stable branches it's out of date.
v 8.0.1
- Improve CI migration procedure and documentation
v 8.0.0 v 8.0.0
- Fix Markdown links not showing up in dashboard activity feed (Stan Hu) - Fix Markdown links not showing up in dashboard activity feed (Stan Hu)
- Remove milestones from merge requests when milestones are deleted (Stan Hu) - Remove milestones from merge requests when milestones are deleted (Stan Hu)
......
...@@ -97,5 +97,5 @@ ...@@ -97,5 +97,5 @@
- if user.access_locked? - if user.access_locked?
= link_to 'Unlock', unlock_admin_user_path(user), method: :put, class: "btn btn-xs btn-success", data: { confirm: 'Are you sure?' } = link_to 'Unlock', unlock_admin_user_path(user), method: :put, class: "btn btn-xs btn-success", data: { confirm: 'Are you sure?' }
- if user.can_be_removed? - if user.can_be_removed?
= link_to 'Destroy', [:admin, user], data: { confirm: "USER #{user.name} WILL BE REMOVED! All tickets linked to this user will also be removed! Maybe block the user instead? Are you sure?" }, method: :delete, class: "btn btn-xs btn-remove" = link_to 'Destroy', [:admin, user], data: { confirm: "USER #{user.name} WILL BE REMOVED! All issues, merge requests and groups linked to this user will also be removed! Maybe block the user instead? Are you sure?" }, method: :delete, class: "btn btn-xs btn-remove"
= paginate @users, theme: "gitlab" = paginate @users, theme: "gitlab"
...@@ -179,8 +179,8 @@ will need this file later. ...@@ -179,8 +179,8 @@ will need this file later.
sudo gitlab-ci-rake backup:create sudo gitlab-ci-rake backup:create
# Source # Source
cd /home/git/gitlab cd /home/gitlab_ci/gitlab-ci
sudo -u git -H bundle exec rake backup:create RAILS_ENV=production sudo -u gitlab_ci -H bundle exec rake backup:create RAILS_ENV=production
``` ```
#### 3. Copy data to the GitLab server #### 3. Copy data to the GitLab server
......
# GitLab Upgrader # GitLab Upgrader (deprecated)
*DEPRECATED* We recommend to [switch to the Omnibus package and repository server](https://about.gitlab.com/update/) instead of using this script. *DEPRECATED* We recommend to [switch to the Omnibus package and repository server](https://about.gitlab.com/update/) instead of using this script.
......
...@@ -679,6 +679,11 @@ namespace :gitlab do ...@@ -679,6 +679,11 @@ namespace :gitlab do
def check_initd_configured_correctly def check_initd_configured_correctly
print "Init.d configured correctly? ... " print "Init.d configured correctly? ... "
if omnibus_gitlab?
puts 'skipped (omnibus-gitlab has no init script)'.magenta
return
end
path = "/etc/default/gitlab" path = "/etc/default/gitlab"
if File.exist?(path) && File.read(path).include?("mail_room_enabled=true") if File.exist?(path) && File.read(path).include?("mail_room_enabled=true")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment