summaryrefslogtreecommitdiff
path: root/spreadspace/openwrt.yml
blob: 9a02c8c6b951d5990288e15b101c2515f4ce6f38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
- name: generate OpenWRT image
  hosts: "{{ install_hostname }}"
  connection: local
  gather_facts: no

  roles:
  - role: openwrt/image
  post_tasks:
  - name: print resulting files
    pause:
      seconds: 0
      prompt: |
        You can find the newly generated files here:

        {% for image in openwrt_output_images %}
          {{ image | realpath }}
        {% endfor %}