Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions crowdsec-docs/docs/getting_started/install.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ Before installing the package, you might want to check [the ports that will be u
groupId="operating-systems"
values={[
{label: 'Debian/Ubuntu', value: 'debian'},
{label: 'EL/Centos7', value: 'centos7'},
{label: 'EL/Centos7/Amzn Linux 2', value: 'centos7'},
{label: 'EL/Centos Stream 8', value: 'centos8'},
{label: 'Amzn Linux 2', value: 'amz'},
{label: 'OpenSUSE', value: 'opensuse'},
{label: 'OpenWRT', value: 'openwrt'},
{label: 'CloudLinux', value: 'cloudlinux'},
]}>
Expand All @@ -51,8 +51,8 @@ Before installing the package, you might want to check [the ports that will be u
<CodeBlock className="language-bash">dnf install crowdsec</CodeBlock>
</TabItem>

<TabItem value="amz">
<CodeBlock className="language-bash">yum install crowdsec</CodeBlock>
<TabItem value="opensuse">
<CodeBlock className="language-bash">zypper install crowdsec</CodeBlock>
</TabItem>

<TabItem value="openwrt">
Expand Down
17 changes: 13 additions & 4 deletions crowdsec-docs/unversioned/getting_started/installation/linux.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ Once the repository is added, you can install the Security Engine via:
groupId="operating-systems"
values={[
{label: 'Debian/Ubuntu', value: 'debian'},
{label: 'EL/Centos7', value: 'centos7'},
{label: 'EL/Centos7/Amzn Linux 2', value: 'centos7'},
{label: 'EL/Centos Stream 8', value: 'centos8'},
{label: 'Amzn Linux', value: 'amz'},
{label: 'OpenSUSE', value: 'opensuse'},
{label: 'OpenWRT', value: 'openwrt'},
{label: 'CloudLinux', value: 'cloudlinux'},
]}>
Expand All @@ -153,8 +153,8 @@ Once the repository is added, you can install the Security Engine via:
<CodeBlock className="language-bash">dnf install crowdsec</CodeBlock>
</TabItem>

<TabItem value="amz">
<CodeBlock className="language-bash">yum install crowdsec</CodeBlock>
<TabItem value="opensuse">
<CodeBlock className="language-bash">zypper install crowdsec</CodeBlock>
</TabItem>

<TabItem value="openwrt">
Expand Down Expand Up @@ -182,6 +182,7 @@ For the quick start guide we will be installing the [iptables](https://en.wikipe
values={[
{ label: 'Debian/Ubuntu', value: 'iptables_debian' ,},
{ label: 'RHEL/Centos/Fedora', value: 'iptables_rhel', },
{ label: 'OpenSUSE', value: 'iptables_suse', },
]
}>
<TabItem value="iptables_debian">
Expand All @@ -197,6 +198,14 @@ sudo apt install crowdsec-firewall-bouncer-iptables
sudo yum install crowdsec-firewall-bouncer-iptables
```

</TabItem>

<TabItem value="iptables_suse">

```bash
sudo zypper install crowdsec-firewall-bouncer-iptables
```

</TabItem>
</Tabs>

Expand Down