Skip to content

Commit 188e600

Browse files
Fix: Replaced yumdownloader with yum --downloadonly (#1676)
Removed yumdownloader
1 parent 985011d commit 188e600

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

content/waf/install/disconnected-environment.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,12 +185,11 @@ See the section for your operating system below:
185185
```shell
186186
mkdir -p /offline/packages
187187

188-
sudo yumdownloader --resolve --destdir=/offline/packages \
188+
sudo yum install --downloadonly --downloaddir=/offline/packages \
189189
app-protect \
190190
app-protect-attack-signatures \
191191
app-protect-bot-signatures \
192192
app-protect-threat-campaigns
193-
194193
```
195194

196195
#### RHEL / Rocky Linux 9
@@ -224,7 +223,7 @@ See the section for your operating system below:
224223
```shell
225224
mkdir -p /offline/packages
226225

227-
sudo yumdownloader --resolve --destdir=/offline/packages \
226+
sudo yum install --downloadonly --downloaddir=/offline/packages \
228227
app-protect \
229228
app-protect-attack-signatures \
230229
app-protect-bot-signatures \
@@ -327,4 +326,4 @@ You can then transfer the files and load the images in your disconnected environ
327326
docker load -i waf-ip-intelligence.tar
328327
```
329328

330-
Ensure your Docker compose files use the tagged images you've transferred.
329+
Ensure your Docker compose files use the tagged images you've transferred.

0 commit comments

Comments
 (0)