aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2017-12-18 23:57:06 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2017-12-18 23:57:06 +0000
commit80c876d85e9c94c4a289aa63dbdfda6ba4c4cb6a (patch)
tree71d452220ed60941fcb614e18df12d074d85001f /UPDATING
parent857f98b9e47903e4c83233b8ac528d5e15eafaf9 (diff)
downloadports-80c876d85e9c94c4a289aa63dbdfda6ba4c4cb6a.tar.gz
ports-80c876d85e9c94c4a289aa63dbdfda6ba4c4cb6a.zip
devel/gogs: Changed user from gogs to git; Moved ini file under /usr/local/etc
PR: 224113 Submitted by: Dmitri Goutnik <dg@syrec.org> (maintainer) Approved by: adamw (mentor) Differential Revision: https://reviews.freebsd.org/D13469
Notes
Notes: svn path=/head/; revision=456695
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING19
1 files changed, 19 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index e1c248da09c4..f4a374ebb049 100644
--- a/UPDATING
+++ b/UPDATING
@@ -5,6 +5,25 @@ 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.
+20171218:
+ AFFECTS: users of devel/gogs
+ AUTHOR: dg@syrec.org
+
+ Gogs user has been changed to "git" and configuration files are now
+ located in /usr/local/etc/gogs. Users should update ownership of the
+ existing Gogs directories with
+
+ # chown -R git:git /var/db/gogs
+ # chown -R git:git /var/log/gogs
+
+ and either move or merge the contents of /var/db/gogs/home/.ssh with
+ /usr/local/git/.ssh. After migration, /var/db/gogs/home can be removed,
+ and both the user "gogs" and the group "gogs" should be deleted:
+
+ # rm -rf /var/db/gogs/home
+ # pw userdel gogs
+ # pw groupdel gogs
+
20171215:
AFFECTS: users of finance/gnucash
AUTHOR: madpilot@FreeBSD.org