From 10f249e92d3d4550283144874b8719d41a2ddfce Mon Sep 17 00:00:00 2001 From: Markus Katharina Brechtel Date: Sat, 13 Apr 2019 19:25:37 +0000 Subject: [PATCH] move package lists --- tasks/config.yaml | 6 +++--- templates/{ => config/package-lists}/common.list.chroot.j2 | 0 templates/{ => config/package-lists}/custom.list.chroot.j2 | 0 templates/{ => config/package-lists}/desktop.list.chroot.j2 | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename templates/{ => config/package-lists}/common.list.chroot.j2 (100%) rename templates/{ => config/package-lists}/custom.list.chroot.j2 (100%) rename templates/{ => config/package-lists}/desktop.list.chroot.j2 (100%) 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