From 9ac5ef09adcbd52273fb262b93c21e65d9d479ae Mon Sep 17 00:00:00 2001 From: m0duspwnens Date: Tue, 29 Oct 2024 11:01:04 -0400 Subject: [PATCH] update comment --- salt/_modules/qcow2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/_modules/qcow2.py b/salt/_modules/qcow2.py index 8a4f89b59..48a90137b 100644 --- a/salt/_modules/qcow2.py +++ b/salt/_modules/qcow2.py @@ -34,7 +34,7 @@ def modify_network_config(image, interface, mode, ip4=None, gw4=None, dns4=None, .. code-block:: bash - salt '*' qcow2.modify_network_config image='/path/to/image.qcow2' interface='eth0' mode='static4' ip4='192.168.1.10/24' gw4='192.168.1.1' dns4='8.8.8.8,8.8.4.4' search4='example.local' + salt '*' qcow2.modify_network_config image='/path/to/image.qcow2' interface='eth0' mode='static4' ip4='192.168.1.10/24' gw4='192.168.1.1' dns4='192.168.1.1,8.8.8.8' search4='example.local' '''