Re: [ansible-project] Cisco MDS | nxos_zone_zoneset

2020-06-09 Thread oxido A
And What happens when you -The admin execute : show zone status ?? El mar., 9 jun. 2020 a las 14:22, Jesse Lyon () escribió: > Alrighty > > So I've run into a bit of a head scratcher > > New MDS deployment, right? > all of 0 customers running across it so far, > 2 admins poking at it, one

Re: [ansible-project] Downloading files with a specific regular expression from remote https host to target server local path.

2020-03-27 Thread oxido A
well may you will need to read the output of curl and then grep over some html tags... I do some like this : curl grep -o -E 'href="([^"*]+)"' | cut -d '"' -f 2 | sort -n | sed -e 's/\///' | tail -1 this wil give you el name of the last file in the list of href="([^"*]+ in my case there are

Re: [ansible-project] how can pass nohup log print to target server for jar/java process using playbook?

2018-12-13 Thread oxido A
I think that you can send the output into a file and then you can read it ,,, *nohup*. *nohup* is a POSIX *command* to ignore the HUP (hangup) signal. The HUP signal is, by convention, the way a terminal warns dependent processes of logout. Output that would normally go to the terminal goes to a