diff --git a/tasks/config.yaml b/tasks/config.yaml index b234683..ceedbb7 100644 --- a/tasks/config.yaml +++ b/tasks/config.yaml @@ -54,17 +54,17 @@ - name: include common packages template: - src: common.list.chroot.j2 + src: config/package-lists/common.list.chroot.j2 dest: "{{ live_build_directory }}/config/package-lists/common.list.chroot" - name: include desktop packages template: - src: desktop.list.chroot.j2 + src: config/package-lists/desktop.list.chroot.j2 dest: "{{ live_build_directory }}/config/package-lists/desktop.list.chroot" - name: include custom packages template: - src: custom.list.chroot.j2 + src: config/package-lists/custom.list.chroot.j2 dest: "{{ live_build_directory }}/config/package-lists/custom.list.chroot" when: live_build_custom_packages is defined diff --git a/templates/common.list.chroot.j2 b/templates/config/package-lists/common.list.chroot.j2 similarity index 100% rename from templates/common.list.chroot.j2 rename to templates/config/package-lists/common.list.chroot.j2 diff --git a/templates/custom.list.chroot.j2 b/templates/config/package-lists/custom.list.chroot.j2 similarity index 100% rename from templates/custom.list.chroot.j2 rename to templates/config/package-lists/custom.list.chroot.j2 diff --git a/templates/desktop.list.chroot.j2 b/templates/config/package-lists/desktop.list.chroot.j2 similarity index 100% rename from templates/desktop.list.chroot.j2 rename to templates/config/package-lists/desktop.list.chroot.j2