From 80428d16a0acd1c0d1478d8861c3d5778745bb77 Mon Sep 17 00:00:00 2001 From: Gopherslol <49794455+Gopherslol@users.noreply.github.com> Date: Mon, 8 Feb 2021 21:55:09 -0800 Subject: [PATCH] Add OpenBSD instructions to dependencies.md First time making a pull request. Please let me know if I am doing this wrong --- support/doc/dependencies.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/support/doc/dependencies.md b/support/doc/dependencies.md index 20aac9596..f4d0bd5c4 100644 --- a/support/doc/dependencies.md +++ b/support/doc/dependencies.md @@ -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!