Skip to content

Commit 337079f

Browse files
authored
Merge pull request #669 from crowdsecurity/install/opensuse
add documentation for opensuse
2 parents ac0d9a3 + c67beed commit 337079f

2 files changed

Lines changed: 17 additions & 8 deletions

File tree

crowdsec-docs/docs/getting_started/install.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ Before installing the package, you might want to check [the ports that will be u
3333
groupId="operating-systems"
3434
values={[
3535
{label: 'Debian/Ubuntu', value: 'debian'},
36-
{label: 'EL/Centos7', value: 'centos7'},
36+
{label: 'EL/Centos7/Amzn Linux 2', value: 'centos7'},
3737
{label: 'EL/Centos Stream 8', value: 'centos8'},
38-
{label: 'Amzn Linux 2', value: 'amz'},
38+
{label: 'OpenSUSE', value: 'opensuse'},
3939
{label: 'OpenWRT', value: 'openwrt'},
4040
{label: 'CloudLinux', value: 'cloudlinux'},
4141
]}>
@@ -51,8 +51,8 @@ Before installing the package, you might want to check [the ports that will be u
5151
<CodeBlock className="language-bash">dnf install crowdsec</CodeBlock>
5252
</TabItem>
5353

54-
<TabItem value="amz">
55-
<CodeBlock className="language-bash">yum install crowdsec</CodeBlock>
54+
<TabItem value="opensuse">
55+
<CodeBlock className="language-bash">zypper install crowdsec</CodeBlock>
5656
</TabItem>
5757

5858
<TabItem value="openwrt">

crowdsec-docs/unversioned/getting_started/installation/linux.mdx

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@ Once the repository is added, you can install the Security Engine via:
135135
groupId="operating-systems"
136136
values={[
137137
{label: 'Debian/Ubuntu', value: 'debian'},
138-
{label: 'EL/Centos7', value: 'centos7'},
138+
{label: 'EL/Centos7/Amzn Linux 2', value: 'centos7'},
139139
{label: 'EL/Centos Stream 8', value: 'centos8'},
140-
{label: 'Amzn Linux', value: 'amz'},
140+
{label: 'OpenSUSE', value: 'opensuse'},
141141
{label: 'OpenWRT', value: 'openwrt'},
142142
{label: 'CloudLinux', value: 'cloudlinux'},
143143
]}>
@@ -153,8 +153,8 @@ Once the repository is added, you can install the Security Engine via:
153153
<CodeBlock className="language-bash">dnf install crowdsec</CodeBlock>
154154
</TabItem>
155155

156-
<TabItem value="amz">
157-
<CodeBlock className="language-bash">yum install crowdsec</CodeBlock>
156+
<TabItem value="opensuse">
157+
<CodeBlock className="language-bash">zypper install crowdsec</CodeBlock>
158158
</TabItem>
159159

160160
<TabItem value="openwrt">
@@ -182,6 +182,7 @@ For the quick start guide we will be installing the [iptables](https://en.wikipe
182182
values={[
183183
{ label: 'Debian/Ubuntu', value: 'iptables_debian' ,},
184184
{ label: 'RHEL/Centos/Fedora', value: 'iptables_rhel', },
185+
{ label: 'OpenSUSE', value: 'iptables_suse', },
185186
]
186187
}>
187188
<TabItem value="iptables_debian">
@@ -197,6 +198,14 @@ sudo apt install crowdsec-firewall-bouncer-iptables
197198
sudo yum install crowdsec-firewall-bouncer-iptables
198199
```
199200

201+
</TabItem>
202+
203+
<TabItem value="iptables_suse">
204+
205+
```bash
206+
sudo zypper install crowdsec-firewall-bouncer-iptables
207+
```
208+
200209
</TabItem>
201210
</Tabs>
202211

0 commit comments

Comments
 (0)