]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Add OpenBSD instructions to dependencies.md
authorGopherslol <49794455+Gopherslol@users.noreply.github.com>
Tue, 9 Feb 2021 05:55:09 +0000 (21:55 -0800)
committerChocobozzz <chocobozzz@cpy.re>
Tue, 9 Feb 2021 07:48:38 +0000 (08:48 +0100)
First time making a pull request. Please let me know if I am doing this wrong

support/doc/dependencies.md

index 20aac959601ce11aed7f22697e519443a16f5e0f..f4d0bd5c43b9fe1ab80b88916f010f6c53c1a6a9 100644 (file)
@@ -342,6 +342,37 @@ rc-service redis start
 rc-service postgresql-11 start
 ```
 
+## OpenBSD
+
+1. Install Packages:
+
+```
+pkg_add sudo bash wget git python nginx pkgconf postgresql-server postgresql-contrib redis openssl
+```
+
+2. Install yarn:
+
+```
+npm install --global yarn
+```
+
+3. Allow users in the wheel group to use sudo
+
+```
+visudo
+```
+Uncomment line #43:
+
+```
+%wheel ALL=(ALL) ALL
+```
+
+4. Enable services:
+
+```
+rcctl enable postgresql redis nginx
+```
+
 ## Other distributions
 
 Feel free to update this file in a pull request!