# https://ubuntu.com/about/release-cycle # https://www.postgresql.org/support/versioning/ - name: check ubuntu and pgsql versions gather_facts: no hosts: "{{target}}" become: "{{become_var}}" tasks: - script: scripts/check-db-versions check_mode: false changed_when: false register: output - debug: var=output.stdout - debug: var=output.stderr