add rpm package required for netbird-ui (#73)

* add rpm package required for netbird-ui

* fix command for adding rpm repository
This commit is contained in:
Bethuel Mmbaga
2023-07-10 22:07:10 +03:00
committed by GitHub
parent 8626b645f8
commit 84d2929191

View File

@@ -33,7 +33,7 @@ export const title = 'Installation'
1. Add the repository: 1. Add the repository:
```bash ```bash
cat <<EOF | sudo tee /etc/yum.repos.d/wiretrustee.repo sudo tee /etc/yum.repos.d/wiretrustee.repo <<EOF
[Wiretrustee] [Wiretrustee]
name=Wiretrustee name=Wiretrustee
baseurl=https://pkgs.wiretrustee.com/yum/ baseurl=https://pkgs.wiretrustee.com/yum/
@@ -48,14 +48,14 @@ export const title = 'Installation'
# for CLI only # for CLI only
sudo yum install netbird sudo yum install netbird
# for GUI package # for GUI package
sudo yum install netbird-ui sudo yum install libappindicator-gtk3 libappindicator netbird-ui
``` ```
**Fedora** **Fedora**
1. Create the repository file: 1. Create the repository file:
```bash ```bash
cat <<EOF | sudo tee /etc/yum.repos.d/wiretrustee.repo sudo tee /etc/yum.repos.d/wiretrustee.repo <<EOF
[Wiretrustee] [Wiretrustee]
name=Wiretrustee name=Wiretrustee
baseurl=https://pkgs.wiretrustee.com/yum/ baseurl=https://pkgs.wiretrustee.com/yum/
@@ -74,7 +74,7 @@ export const title = 'Installation'
# for CLI only # for CLI only
sudo dnf install netbird sudo dnf install netbird
# for GUI package # for GUI package
sudo dnf install netbird-ui sudo dnf install libappindicator-gtk3 libappindicator netbird-ui
``` ```