From 1b52acade8ca56d6c8b2c3df7efb00504767f551 Mon Sep 17 00:00:00 2001 From: Scott Butler Date: Wed, 25 May 2016 13:37:21 -0700 Subject: [PATCH] Fixed indenting in samples. --- docsite/rst/intro_networking.rst | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docsite/rst/intro_networking.rst b/docsite/rst/intro_networking.rst index f9f1fabdc69..ce3059bf9a6 100644 --- a/docsite/rst/intro_networking.rst +++ b/docsite/rst/intro_networking.rst @@ -191,10 +191,10 @@ For example:: --- - name: wait for interface to be admin enabled eos_command: - commands: - - show interface Ethernet4 | json - waitfor: - - "result[0].interfaces.Ethernet4.interfaceStatus eq connected" + commands: + - show interface Ethernet4 | json + waitfor: + - "result[0].interfaces.Ethernet4.interfaceStatus eq connected" In the above example task, the command :code:`show interface Ethernet4 | json` is executed on the remote device and the results are evaluated. If @@ -210,12 +210,12 @@ results in an interface. For instance:: --- - name: wait for interfaces to be admin enabled eos_command: - commands: - - show interface Ethernet4 | json - - show interface Ethernet5 | json - waitfor: - - "result[0].interfaces.Ethernet4.interfaceStatus eq connected" - - "result[1].interfaces.Ethernet4.interfaceStatus eq connected" + commands: + - show interface Ethernet4 | json + - show interface Ethernet5 | json + waitfor: + - "result[0].interfaces.Ethernet4.interfaceStatus eq connected" + - "result[1].interfaces.Ethernet4.interfaceStatus eq connected" In the above example, two commands are executed on the remote device, and the results are evaluated. By specifying the result