aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorMatthias Fechner <mfechner@FreeBSD.org>2019-04-23 08:27:13 +0000
committerMatthias Fechner <mfechner@FreeBSD.org>2019-04-23 08:27:13 +0000
commitc39ae03f678861da446fb053832f083950753f7f (patch)
treecfab65122337d3bcf98cf5b3c4e16c430f44e282 /UPDATING
parent47549ca5058001b3d105ce8b39d004d605d00dd7 (diff)
downloadports-c39ae03f678861da446fb053832f083950753f7f.tar.gz
ports-c39ae03f678861da446fb053832f083950753f7f.zip
Upgrade to 11.10.
For full log see: https://about.gitlab.com/2019/04/22/gitlab-11-10-released/ WARNING, this release switches the path were the repositories are stored back to the default git home dir. Make sure you read the UPDATING 20190423 entry and follow the update maual very carefully!
Notes
Notes: svn path=/head/; revision=499731
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING40
1 files changed, 40 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index 16865b2e8530..a7d9fcf5ff12 100644
--- a/UPDATING
+++ b/UPDATING
@@ -5,6 +5,46 @@ they are unavoidable.
You should get into the habit of checking this file for changes each time
you update your ports collection, before attempting any port upgrades.
+20190423:
+ AFFECTS: users of www/gitlab-ce
+ AUTHOR: mfechner@FreeBSD.org
+
+ The directory where all repositories and ssh permissions are stored
+ was changed from /usr/home/git back to /usr/local/git, to match again the
+ recommended standards on FreeBSD.
+ This will cause now some other git management packages to collide with
+ gitlab. Make sure you migrate all you git repositories to gitlab first,
+ before you continue.
+
+ Make sure /usr/local/git/repositories and /usr/local/git/.ssh are not
+ existing!
+ Otherwise the next commands can break your installation for managing
+ git repositories within gitlab and with your other gitlab management
+ software!
+
+ You must move the old files to the new location with:
+ # service gitlab stop
+ # mv /usr/home/git /usr/local/
+ # pkg upg
+
+ Make sure you update your config files, diff shows you what you maybe
+ must change:
+ # cd /usr/local/www/gitlab-ce
+ # git diff config/gitlab.yml.sample config/gitlab.yml
+ # cd /usr/local/share/gitlab-shell/
+ # git diff config.yml.sample config.yml
+ # cd /usr/local/share/gitaly
+ # git diff config.toml.sample config.toml
+
+ # Change home directory of user git back to /usr/local/git
+ # vipw
+ The line should now looks like:
+ git:*:211:211::0:0:gitosis user:/usr/local/git:/bin/sh
+
+ If you do an upgrade of gitlab follow the upgrade guide.
+ If not, just start gitlab again with:
+ # service gitlab start
+
20190422:
AFFECTS: users of security/libressl
AUTHOR: brnrd@FreeBSD.org