Fixed RETURN string

This commit is contained in:
GGabriele 2016-04-18 16:50:26 +02:00
parent 36942ec24b
commit 026ddfcc46

View file

@ -69,10 +69,10 @@ state:
type: string type: string
sample: "disabled" sample: "disabled"
updates: updates:
description: command string sent to the device description: commands sent to the device
returned: always returned: always
type: string type: list
sample: "no feature eigrp ;" sample: ["no feature eigrp"]
changed: changed:
description: check to see if a change was made on the device description: check to see if a change was made on the device
returned: always returned: always
@ -267,4 +267,4 @@ from ansible.module_utils.shell import *
from ansible.module_utils.netcfg import * from ansible.module_utils.netcfg import *
from ansible.module_utils.nxos import * from ansible.module_utils.nxos import *
if __name__ == '__main__': if __name__ == '__main__':
main() main()