summaryrefslogtreecommitdiff
path: root/playbooks/dashboard/multi.yaml
blob: 49f8602c618dffc3d6b1affc0d515b5f5aef4448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- hosts: all
  tasks:

    - name: Make tenant subdir
      file:
        state: directory
        dest: '{{ zuul.project.src_dir }}/{{ javascript_content_dir }}/t'

    - name: Copy the html/javascript content into subdirs
      shell: |
          CONTENT_DIR="{{ zuul.project.src_dir }}/{{ javascript_content_dir }}"
          mkdir $CONTENT_DIR/t/{{ item }}
          for f in $(find $CONTENT_DIR -type f -mindepth 1 -maxdepth 1) ; do
              cp $f $CONTENT_DIR/t/{{ item }}
          done
      with_items:
        - local
        - ansible
        - ansible-dev
        - openstack.org
        - rdoproject.org