From 07e67c54c5620ce2438affdb8cbe3add7f5d7f5f Mon Sep 17 00:00:00 2001 From: Piotr Wodecki <44680063+PiotrWodecki@users.noreply.github.com> Date: Thu, 16 Nov 2023 14:49:58 +0100 Subject: [PATCH] Fix invalid use of em dash in iptables command --- content/engine/swarm/swarm-tutorial/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/engine/swarm/swarm-tutorial/_index.md b/content/engine/swarm/swarm-tutorial/_index.md index da7ba91faf4..b19f0c9b459 100644 --- a/content/engine/swarm/swarm-tutorial/_index.md +++ b/content/engine/swarm/swarm-tutorial/_index.md @@ -92,7 +92,7 @@ additional hardening is suggested: ```bash # Example iptables rule (order and other tools may require customization) -iptables -I INPUT -m udp —-dport 4789 -m policy --dir in --pol none -j DROP +iptables -I INPUT -m udp --dport 4789 -m policy --dir in --pol none -j DROP ``` ## What's next?