This is an automated email from the ASF dual-hosted git repository.
rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new d0a1d90 add instructions for creating /srv in Catalina
d0a1d90 is described below
commit d0a1d90b98009bde4127f2dc017109f4663dc68a
Author: Sam Ruby <[email protected]>
AuthorDate: Sat Oct 19 19:12:00 2019 -0400
add instructions for creating /srv in Catalina
---
MACOSX.md | 18 ++++++++++++++++--
1 file changed, 16 insertions(+), 2 deletions(-)
diff --git a/MACOSX.md b/MACOSX.md
index af87727..9349c68 100644
--- a/MACOSX.md
+++ b/MACOSX.md
@@ -222,8 +222,8 @@ git remote add github [email protected]:apache/whimsy.git
git remote add asf https://gitbox.apache.org/repos/asf/whimsy.git
```
-Establish a link to this repository in a known location - this step is
-optional to do basic work but required for a number of tools:
+Establish a link to this repository in a known location. First instructions
+for Mac OSX version < 10.15 (Mojave, High Sierra, Sierra, ...):
```
cd whimsy
@@ -231,6 +231,20 @@ sudo mkdir /srv
sudo ln -s `pwd` /srv/whimsy
```
+Alternate instructions for Mac OSX version >= 10.15 (Catalina):
+
+```
+sudo mkdir /var/whimsy
+echo -e 'srv\t/var/whimsy' | sudo tee -a /etc/synthetic.conf
+```
+
+Reboot the machine, then:
+
+```
+cd whimsy
+sudo ln -s `pwd` /srv/whimsy
+```
+
Configure LDAP
--------------