summaryrefslogtreecommitdiff
path: root/roles/install-config/tasks/main.yml
blob: 4447f87fa8eec214d6765c9f1e137831d17ca674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- name: Make sure that config partition marker exists
  become: true
  file:
    path: "{{ vyos_install_root }}/opt/vyatta/etc/config/.vyatta_config"
    state: touch

- name: Copy the default config for QEMU to the installed image
  become: true
  copy:
    src: files/config.boot
    dest: "{{ vyos_install_root }}/opt/vyatta/etc/config/config.boot"
    mode: 0755