Have a playbook executes the below command looking for VPN session, and
registers the output. When I execute commands which are longer ( here col
len > 52 ) , the output gets messed up , as in, it's kind of printing the
input as well (have attached the output for reference). Any pointers as in
how i can address this ?
- name: Check for VPN session
asa_command:
commands:
- show vpn-sessiondb svc filter name {{username}}
- show vpn-sessiondb webvpn filter name {{username}}
- show vpn-sessiondb anyconnect filter name {{username}}
register: session_status
Output when the executed command is long [ the managed host too has a
longhostname ]
TASK [debug]
**************************************************************************************************************************************************************************
ok: [loooooonghostname] => {
"msg": [
[
"INFO: There are presently no active sessions of the type
specified"
],
[
"INFO: There are presently no active sessions of the type
specified"
],
[
"show vpn-sessiondb anyconnect filter name longusernct filter
name longuserna eshow vpn-sessiondb anyconnect
filter name longuser$",
"INFO: There are presently no active sessions of the type
specified"
],
]
}
Output when the executed command is relatively short.
TASK [debug]
**************************************************************************************************************************************************************************
ok: [loooooonghostname] => {
"msg": [
[
"INFO: There are presently no active sessions of the type
specified"
],
[
"INFO: There are presently no active sessions of the type
specified"
],
[
"INFO: There are presently no active sessions of the type
specified"
]
]
}
Thanks,
SR
--
You received this message because you are subscribed to the Google Groups
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/ansible-project/2909411b-4d95-4dca-8bbc-b6a1fee81c01%40googlegroups.com.