blob: e0e29258c825ab16384054c39474bba907bad1ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
- 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 config to the installed image
become: true
template:
src: config.boot.j2
dest: "{{ vyos_install_root }}/opt/vyatta/etc/config/config.boot"
mode: 0755
- name: Copy config to the installed image
become: true
template:
src: config.boot.j2
dest: "/tmp/config.boot"
mode: 0755
|