- hosts: localhost gather_facts: False tasks: - name: Update Jenkins-Jobs on Jenkins Master - docker container command: | echo "INFO:jenkins_jobs.cli.subcommand.update:Updating jobs in ['./jobs/'] ([]) INFO:root:Caching type parameters of parameters = jenkins_jobs.modules.parameters:Parameters INFO:root:Caching type builders of builders = jenkins_jobs.modules.builders:Builders INFO:jenkins_jobs.builder:Number of jobs generated: 1 INFO:jenkins_jobs.cli.subcommand.update:Number of jobs updated: 0 INFO:jenkins_jobs.builder:Number of views generated: 0 INFO:jenkins_jobs.cli.subcommand.update:Number of views updated: 0 " register: jjb_update changed_when: - ( jjb_update.stdout_lines | regex_replace('.*jobs updated.\s+(\d+).*', '\1') != '0' )
- name: Number of jobs updated debug: msg: | {{ jjb_update.stdout_lines | regex_replace('.*jobs updated.\s+(\d+).*', '\1') }}
- name: Number of jobs updated equals 0? debug: msg: | {{ jjb_update.stdout_lines | regex_replace('.*jobs updated.\s+(\d+).*', '\1') == '0' }}
TASK [Update Jenkins-Jobs on Jenkins Master - docker container] ************************************************************************************************************changed: [localhost]
TASK [Number of jobs updated] **********************************************************************************************************************************************ok: [localhost] => { "msg": "0\n"}
TASK [Number of jobs updated equals 0?] ************************************************************************************************************************************ok: [localhost] => { "msg": "True\n"}
--
You received this message because you are subscribed to a topic in the Google Groups "Ansible Project" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ansible-project/RXmtqMg_pl4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to ansible-proje...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/92a3f484-9739-ae82-37eb-237e306277f5%40olstad.com.