Skip to content

Commit 4b9cc75

Browse files
author
Joseph Sirianni
authored
re-write package install commands (#604)
1 parent 93c9769 commit 4b9cc75

File tree

1 file changed

+26
-10
lines changed

1 file changed

+26
-10
lines changed

README.md

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,26 +48,42 @@ Utilize Plugins to get up and running quickly. Here's a quick list of Stanza's m
4848
### Linux Package Manager
4949

5050
Linux packages are available for the following Linux Distributions:
51-
- RHEL 7 and 8
52-
- Alma, Rocky Linux 8
53-
- Oracle Linux 8
51+
- RHEL / Centos 7 and 8
52+
- Oracle Linux 7 and 8
53+
- Alma, Rocky Linux
5454
- Fedora 30 and newer
5555
- Debian 9 and newer
5656
- Ubuntu LTS 16.04 and newer
5757

58-
Once installed, Stanza will be running under a systemd server named `stanza` as the user `stanza`.
58+
Once installed, Stanza will be running under a systemd service named `stanza` as the user `stanza`.
5959

6060
#### RPM Install
6161

62-
1. Copy the download link for the `rpm` package for your architecture from the [releases page](https://github.com/observIQ/stanza/releases).
63-
2. Install with `sudo yum install <paste link here>`
64-
3. Enable and start the service: `sudo systemctl enable --now stanza`
62+
On Red Hat based platforms, Stanza can be installed with:
63+
```bash
64+
sudo dnf install https://github.com/observIQ/stanza/releases/download/v1.6.1/stanza_1.6.1_linux_amd64.rpm
65+
sudo systemctl enable --now stanza
66+
```
67+
68+
On RHEL / Centos 7, use `yum` instead of `dns`.
69+
70+
On Suse based platforms, Stanza can be installed with:
71+
```bash
72+
sudo zypper install https://github.com/observIQ/stanza/releases/download/v1.6.1/stanza_1.6.1_linux_amd64.rpm
73+
sudo systemctl enable --now stanza
74+
```
75+
76+
Be sure to replace the URL with the version you require. You can find Stanza versions [here](https://github.com/observIQ/stanza/releases).
6577

6678
#### DEB Install
6779

68-
1. Copy the download link for the `deb` package for your architecture from the [releases page](https://github.com/observIQ/stanza/releases).
69-
2. Install with `sudo apt-get install <paste link here>`
70-
3. Enable and start the service: `sudo systemctl enable --now stanza`
80+
On Debian / Ubuntu based platforms, Stanza can be installed with:
81+
82+
```bash
83+
curl -L -o stanza.deb https://github.com/observIQ/stanza/releases/download/v1.6.1/stanza_1.6.1_linux_amd64.deb
84+
sudo apt-get install -f ./stanza.deb
85+
sudo systemctl enable --now stanza
86+
```
7187

7288
#### Changing the Runtime User
7389

0 commit comments

Comments
 (0)