diff options
author | Gopherslol <49794455+Gopherslol@users.noreply.github.com> | 2021-02-08 21:55:09 -0800 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2021-02-09 08:48:38 +0100 |
commit | 80428d16a0acd1c0d1478d8861c3d5778745bb77 (patch) | |
tree | bfac45e5e685f1b0f51c88f92a0b561922463e4a /support | |
parent | 3933a127d26f5f3e4d76f533e9bc002ae92680c4 (diff) | |
download | PeerTube-80428d16a0acd1c0d1478d8861c3d5778745bb77.tar.gz PeerTube-80428d16a0acd1c0d1478d8861c3d5778745bb77.tar.zst PeerTube-80428d16a0acd1c0d1478d8861c3d5778745bb77.zip |
Add OpenBSD instructions to dependencies.md
First time making a pull request. Please let me know if I am doing this wrong
Diffstat (limited to 'support')
-rw-r--r-- | support/doc/dependencies.md | 31 |
1 files changed, 31 insertions, 0 deletions
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 | |||
342 | rc-service postgresql-11 start | 342 | rc-service postgresql-11 start |
343 | ``` | 343 | ``` |
344 | 344 | ||
345 | ## OpenBSD | ||
346 | |||
347 | 1. Install Packages: | ||
348 | |||
349 | ``` | ||
350 | pkg_add sudo bash wget git python nginx pkgconf postgresql-server postgresql-contrib redis openssl | ||
351 | ``` | ||
352 | |||
353 | 2. Install yarn: | ||
354 | |||
355 | ``` | ||
356 | npm install --global yarn | ||
357 | ``` | ||
358 | |||
359 | 3. Allow users in the wheel group to use sudo | ||
360 | |||
361 | ``` | ||
362 | visudo | ||
363 | ``` | ||
364 | Uncomment line #43: | ||
365 | |||
366 | ``` | ||
367 | %wheel ALL=(ALL) ALL | ||
368 | ``` | ||
369 | |||
370 | 4. Enable services: | ||
371 | |||
372 | ``` | ||
373 | rcctl enable postgresql redis nginx | ||
374 | ``` | ||
375 | |||
345 | ## Other distributions | 376 | ## Other distributions |
346 | 377 | ||
347 | Feel free to update this file in a pull request! | 378 | Feel free to update this file in a pull request! |