Skip to content

Commit

Permalink
Merge pull request #669 from crowdsecurity/install/opensuse
Browse files Browse the repository at this point in the history
add documentation for opensuse
  • Loading branch information
sabban authored Nov 14, 2024
2 parents ac0d9a3 + c67beed commit 337079f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
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

0 comments on commit 337079f

Please sign in to comment.