blob: 0715fa130b600e2b8f8a8a284dce9b3a9c24b821 (
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 config to the installed image
become: true
template:
src: config.boot.j2
dest: "{{ vyos_install_root }}/opt/vyatta/etc/config/config.boot"
mode: 0755
|