File: main.yaml

package info (click to toggle)
python-tempestconf 3.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 964 kB
  • sloc: python: 4,530; makefile: 18; sh: 9
file content (23 lines) | stat: -rw-r--r-- 579 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  - name: Cat clouds.yaml file
    shell: |
        set -ex
        cat {{ clouds_file_path }}
    ignore_errors: True
    args:
       executable: /bin/bash

  - name: Workaround for AUTH URL in clouds.yaml
    replace:
        path: "{{ clouds_file_path }}"
        regexp: "auth_url:.*"
        replace: "auth_url: http://{{ ansible_default_ipv4.address }}/identity/v3"
    become: true
    ignore_errors: True

  - name: Cat edited clouds.yaml file
    shell: |
        set -ex
        cat {{ clouds_file_path }}
    ignore_errors: True
    args:
      executable: /bin/bash