From 7b23e26d1e2bb24ca72a186ed92c3369e05ab452 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jard=C3=B3n?= Date: Tue, 28 Apr 2015 17:16:17 +0100 Subject: Install /etc/os-release using the new install-essential-files extension This is currently hardcoded in morph Change-Id: I34446bbdf6ad3a7bdd0c34e4fcbd79433ce0fd71 --- essential-files/etc/os-release | 5 +++++ essential-files/manifest | 2 ++ systems/armv7lhf-cross-toolchain-system-x86_32.morph | 1 + systems/armv7lhf-cross-toolchain-system-x86_64.morph | 1 + systems/base-system-armv7-highbank.morph | 1 + systems/base-system-armv7-versatile.morph | 1 + systems/base-system-armv7b-highbank.morph | 1 + systems/base-system-armv7b-vexpress-tc2.morph | 1 + systems/base-system-armv7lhf-highbank.morph | 1 + systems/base-system-ppc64-generic.morph | 1 + systems/base-system-x86_32-generic.morph | 1 + systems/base-system-x86_64-generic.morph | 1 + systems/build-system-armv7lhf-highbank.morph | 1 + systems/build-system-armv7lhf-jetson.morph | 1 + systems/build-system-armv8b64.morph | 1 + systems/build-system-armv8l64.morph | 1 + systems/build-system-ppc64.morph | 1 + systems/build-system-x86_32-chroot.morph | 1 + systems/build-system-x86_32.morph | 1 + systems/build-system-x86_64-chroot.morph | 1 + systems/build-system-x86_64.morph | 1 + systems/ceph-service-x86_64-generic.morph | 1 + systems/cxmanage-system-x86_64-generic.morph | 1 + systems/devel-system-armv7-chroot.morph | 1 + systems/devel-system-armv7-highbank.morph | 1 + systems/devel-system-armv7-versatile.morph | 1 + systems/devel-system-armv7-wandboard.morph | 1 + systems/devel-system-armv7b-chroot.morph | 1 + systems/devel-system-armv7b-highbank.morph | 1 + systems/devel-system-armv7lhf-chroot.morph | 1 + systems/devel-system-armv7lhf-highbank.morph | 1 + systems/devel-system-armv7lhf-jetson.morph | 1 + systems/devel-system-armv7lhf-wandboard.morph | 1 + systems/devel-system-armv8b64.morph | 1 + systems/devel-system-armv8l64.morph | 1 + systems/devel-system-ppc64-chroot.morph | 1 + systems/devel-system-ppc64-generic.morph | 1 + systems/devel-system-x86_32-chroot.morph | 1 + systems/devel-system-x86_32-generic.morph | 1 + systems/devel-system-x86_64-chroot.morph | 1 + systems/devel-system-x86_64-generic.morph | 1 + systems/devel-system-x86_64-vagrant.morph | 1 + systems/genivi-baseline-system-armv7lhf-jetson.morph | 1 + systems/genivi-baseline-system-armv7lhf-versatile.morph | 1 + systems/genivi-baseline-system-x86_64-generic.morph | 1 + systems/installer-system-armv8b64.morph | 1 + systems/installer-system-x86_64.morph | 1 + systems/minimal-system-x86_32-generic.morph | 1 + systems/minimal-system-x86_64-generic.morph | 1 + systems/nodejs-system-x86_64.morph | 1 + systems/openstack-system-x86_64.morph | 1 + systems/qt4-devel-system-x86_64-generic.morph | 1 + systems/qt5-devel-system-x86_64-generic.morph | 1 + systems/swift-system-x86_64.morph | 1 + systems/trove-system-x86_64.morph | 1 + systems/web-system-x86_64-generic.morph | 1 + systems/weston-system-armv7lhf-jetson.morph | 1 + systems/weston-system-x86_64-generic.morph | 1 + systems/xfce-system.morph | 1 + systems/zookeeper-client-x86_64.morph | 1 + systems/zookeeper-server-x86_64.morph | 1 + 61 files changed, 66 insertions(+) create mode 100644 essential-files/etc/os-release create mode 100644 essential-files/manifest diff --git a/essential-files/etc/os-release b/essential-files/etc/os-release new file mode 100644 index 00000000..b729c75f --- /dev/null +++ b/essential-files/etc/os-release @@ -0,0 +1,5 @@ +NAME="Baserock" +ID=baserock +HOME_URL="http://wiki.baserock.org" +SUPPORT_URL="http://wiki.baserock.org/mailinglist" +BUG_REPORT_URL="http://wiki.baserock.org/mailinglist" diff --git a/essential-files/manifest b/essential-files/manifest new file mode 100644 index 00000000..504f9cbb --- /dev/null +++ b/essential-files/manifest @@ -0,0 +1,2 @@ +0040755 0 0 /etc +overwrite 0100644 0 0 /etc/os-release diff --git a/systems/armv7lhf-cross-toolchain-system-x86_32.morph b/systems/armv7lhf-cross-toolchain-system-x86_32.morph index 3f66d178..9fe7888a 100644 --- a/systems/armv7lhf-cross-toolchain-system-x86_32.morph +++ b/systems/armv7lhf-cross-toolchain-system-x86_32.morph @@ -16,3 +16,4 @@ configuration-extensions: - simple-network - nfsboot - install-files +- install-essential-files diff --git a/systems/armv7lhf-cross-toolchain-system-x86_64.morph b/systems/armv7lhf-cross-toolchain-system-x86_64.morph index 76197491..c1de199c 100644 --- a/systems/armv7lhf-cross-toolchain-system-x86_64.morph +++ b/systems/armv7lhf-cross-toolchain-system-x86_64.morph @@ -16,3 +16,4 @@ configuration-extensions: - simple-network - nfsboot - install-files +- install-essential-files diff --git a/systems/base-system-armv7-highbank.morph b/systems/base-system-armv7-highbank.morph index 47c69bad..ffc5e188 100644 --- a/systems/base-system-armv7-highbank.morph +++ b/systems/base-system-armv7-highbank.morph @@ -17,3 +17,4 @@ configuration-extensions: - add-config-files - nfsboot - install-files +- install-essential-files diff --git a/systems/base-system-armv7-versatile.morph b/systems/base-system-armv7-versatile.morph index e5b9d7f5..8de2b35f 100644 --- a/systems/base-system-armv7-versatile.morph +++ b/systems/base-system-armv7-versatile.morph @@ -17,3 +17,4 @@ configuration-extensions: - add-config-files - nfsboot - install-files +- install-essential-files diff --git a/systems/base-system-armv7b-highbank.morph b/systems/base-system-armv7b-highbank.morph index 169d490e..23bf4dbf 100644 --- a/systems/base-system-armv7b-highbank.morph +++ b/systems/base-system-armv7b-highbank.morph @@ -17,3 +17,4 @@ configuration-extensions: - add-config-files - nfsboot - install-files +- install-essential-files diff --git a/systems/base-system-armv7b-vexpress-tc2.morph b/systems/base-system-armv7b-vexpress-tc2.morph index 76d5c006..b06ead7b 100644 --- a/systems/base-system-armv7b-vexpress-tc2.morph +++ b/systems/base-system-armv7b-vexpress-tc2.morph @@ -16,3 +16,4 @@ configuration-extensions: - add-config-files - nfsboot - install-files +- install-essential-files diff --git a/systems/base-system-armv7lhf-highbank.morph b/systems/base-system-armv7lhf-highbank.morph index b889278d..c827f3a2 100644 --- a/systems/base-system-armv7lhf-highbank.morph +++ b/systems/base-system-armv7lhf-highbank.morph @@ -17,3 +17,4 @@ configuration-extensions: - add-config-files - nfsboot - install-files +- install-essential-files diff --git a/systems/base-system-ppc64-generic.morph b/systems/base-system-ppc64-generic.morph index 488bf5e4..3763cce5 100644 --- a/systems/base-system-ppc64-generic.morph +++ b/systems/base-system-ppc64-generic.morph @@ -17,3 +17,4 @@ configuration-extensions: - add-config-files - nfsboot - install-files +- install-essential-files diff --git a/systems/base-system-x86_32-generic.morph b/systems/base-system-x86_32-generic.morph index 612778d7..7ada4052 100644 --- a/systems/base-system-x86_32-generic.morph +++ b/systems/base-system-x86_32-generic.morph @@ -16,3 +16,4 @@ configuration-extensions: - add-config-files - nfsboot - install-files +- install-essential-files diff --git a/systems/base-system-x86_64-generic.morph b/systems/base-system-x86_64-generic.morph index bd331817..796c8185 100644 --- a/systems/base-system-x86_64-generic.morph +++ b/systems/base-system-x86_64-generic.morph @@ -17,3 +17,4 @@ configuration-extensions: - add-config-files - nfsboot - install-files +- install-essential-files diff --git a/systems/build-system-armv7lhf-highbank.morph b/systems/build-system-armv7lhf-highbank.morph index 08e76885..d43ac935 100644 --- a/systems/build-system-armv7lhf-highbank.morph +++ b/systems/build-system-armv7lhf-highbank.morph @@ -52,3 +52,4 @@ configuration-extensions: - fstab - mason - cloud-init +- install-essential-files diff --git a/systems/build-system-armv7lhf-jetson.morph b/systems/build-system-armv7lhf-jetson.morph index 29e1ef24..fa948037 100644 --- a/systems/build-system-armv7lhf-jetson.morph +++ b/systems/build-system-armv7lhf-jetson.morph @@ -50,3 +50,4 @@ configuration-extensions: - fstab - mason - cloud-init +- install-essential-files diff --git a/systems/build-system-armv8b64.morph b/systems/build-system-armv8b64.morph index 53f78f16..84495016 100644 --- a/systems/build-system-armv8b64.morph +++ b/systems/build-system-armv8b64.morph @@ -54,3 +54,4 @@ configuration-extensions: - mason - cloud-init - moonshot-kernel +- install-essential-files diff --git a/systems/build-system-armv8l64.morph b/systems/build-system-armv8l64.morph index c6f18bb9..f79fb76e 100644 --- a/systems/build-system-armv8l64.morph +++ b/systems/build-system-armv8l64.morph @@ -54,3 +54,4 @@ configuration-extensions: - mason - cloud-init - moonshot-kernel +- install-essential-files diff --git a/systems/build-system-ppc64.morph b/systems/build-system-ppc64.morph index bf99c769..38f2e9f3 100644 --- a/systems/build-system-ppc64.morph +++ b/systems/build-system-ppc64.morph @@ -50,3 +50,4 @@ configuration-extensions: - fstab - mason - cloud-init +- install-essential-files diff --git a/systems/build-system-x86_32-chroot.morph b/systems/build-system-x86_32-chroot.morph index 1d94f3e4..f193841f 100644 --- a/systems/build-system-x86_32-chroot.morph +++ b/systems/build-system-x86_32-chroot.morph @@ -50,3 +50,4 @@ configuration-extensions: - fstab - mason - cloud-init +- install-essential-files diff --git a/systems/build-system-x86_32.morph b/systems/build-system-x86_32.morph index 6a296819..a802b64f 100644 --- a/systems/build-system-x86_32.morph +++ b/systems/build-system-x86_32.morph @@ -52,3 +52,4 @@ configuration-extensions: - fstab - mason - cloud-init +- install-essential-files diff --git a/systems/build-system-x86_64-chroot.morph b/systems/build-system-x86_64-chroot.morph index f2be63cf..fa54f9d3 100644 --- a/systems/build-system-x86_64-chroot.morph +++ b/systems/build-system-x86_64-chroot.morph @@ -50,3 +50,4 @@ configuration-extensions: - fstab - mason - cloud-init +- install-essential-files diff --git a/systems/build-system-x86_64.morph b/systems/build-system-x86_64.morph index 922e26f7..8fe5f91f 100644 --- a/systems/build-system-x86_64.morph +++ b/systems/build-system-x86_64.morph @@ -52,3 +52,4 @@ configuration-extensions: - fstab - mason - cloud-init +- install-essential-files diff --git a/systems/ceph-service-x86_64-generic.morph b/systems/ceph-service-x86_64-generic.morph index e585c2d6..7431e56a 100644 --- a/systems/ceph-service-x86_64-generic.morph +++ b/systems/ceph-service-x86_64-generic.morph @@ -61,3 +61,4 @@ configuration-extensions: - install-files - ceph - cloud-init +- install-essential-files diff --git a/systems/cxmanage-system-x86_64-generic.morph b/systems/cxmanage-system-x86_64-generic.morph index d75fbd14..aaa0fa81 100644 --- a/systems/cxmanage-system-x86_64-generic.morph +++ b/systems/cxmanage-system-x86_64-generic.morph @@ -21,3 +21,4 @@ configuration-extensions: - nfsboot - install-files - fstab +- install-essential-files diff --git a/systems/devel-system-armv7-chroot.morph b/systems/devel-system-armv7-chroot.morph index d6c78c13..550395d6 100644 --- a/systems/devel-system-armv7-chroot.morph +++ b/systems/devel-system-armv7-chroot.morph @@ -57,3 +57,4 @@ configuration-extensions: - nfsboot - install-files - fstab +- install-essential-files diff --git a/systems/devel-system-armv7-highbank.morph b/systems/devel-system-armv7-highbank.morph index dae24fff..dd9e315a 100644 --- a/systems/devel-system-armv7-highbank.morph +++ b/systems/devel-system-armv7-highbank.morph @@ -60,3 +60,4 @@ configuration-extensions: - nfsboot - install-files - fstab +- install-essential-files diff --git a/systems/devel-system-armv7-versatile.morph b/systems/devel-system-armv7-versatile.morph index b0eafe82..720561bf 100644 --- a/systems/devel-system-armv7-versatile.morph +++ b/systems/devel-system-armv7-versatile.morph @@ -58,3 +58,4 @@ configuration-extensions: - nfsboot - install-files - fstab +- install-essential-files diff --git a/systems/devel-system-armv7-wandboard.morph b/systems/devel-system-armv7-wandboard.morph index df521772..b7395cee 100644 --- a/systems/devel-system-armv7-wandboard.morph +++ b/systems/devel-system-armv7-wandboard.morph @@ -58,3 +58,4 @@ configuration-extensions: - nfsboot - install-files - fstab +- install-essential-files diff --git a/systems/devel-system-armv7b-chroot.morph b/systems/devel-system-armv7b-chroot.morph index 2982f422..e4457246 100644 --- a/systems/devel-system-armv7b-chroot.morph +++ b/systems/devel-system-armv7b-chroot.morph @@ -49,3 +49,4 @@ configuration-extensions: - nfsboot - install-files - fstab +- install-essential-files diff --git a/systems/devel-system-armv7b-highbank.morph b/systems/devel-system-armv7b-highbank.morph index b1710b78..990aec67 100644 --- a/systems/devel-system-armv7b-highbank.morph +++ b/systems/devel-system-armv7b-highbank.morph @@ -56,3 +56,4 @@ configuration-extensions: - nfsboot - install-files - fstab +- install-essential-files diff --git a/systems/devel-system-armv7lhf-chroot.morph b/systems/devel-system-armv7lhf-chroot.morph index 894686fe..340a27ce 100644 --- a/systems/devel-system-armv7lhf-chroot.morph +++ b/systems/devel-system-armv7lhf-chroot.morph @@ -57,3 +57,4 @@ configuration-extensions: - nfsboot - install-files - fstab +- install-essential-files diff --git a/systems/devel-system-armv7lhf-highbank.morph b/systems/devel-system-armv7lhf-highbank.morph index 928f9ce2..a4ba2d92 100644 --- a/systems/devel-system-armv7lhf-highbank.morph +++ b/systems/devel-system-armv7lhf-highbank.morph @@ -63,3 +63,4 @@ configuration-extensions: - nfsboot - install-files - fstab +- install-essential-files diff --git a/systems/devel-system-armv7lhf-jetson.morph b/systems/devel-system-armv7lhf-jetson.morph index 14a3f193..1adde07b 100644 --- a/systems/devel-system-armv7lhf-jetson.morph +++ b/systems/devel-system-armv7lhf-jetson.morph @@ -61,3 +61,4 @@ configuration-extensions: - nfsboot - install-files - fstab +- install-essential-files diff --git a/systems/devel-system-armv7lhf-wandboard.morph b/systems/devel-system-armv7lhf-wandboard.morph index 44c9e4e8..05648b97 100644 --- a/systems/devel-system-armv7lhf-wandboard.morph +++ b/systems/devel-system-armv7lhf-wandboard.morph @@ -61,3 +61,4 @@ configuration-extensions: - nfsboot - install-files - fstab +- install-essential-files diff --git a/systems/devel-system-armv8b64.morph b/systems/devel-system-armv8b64.morph index 488574ed..33ceb5a6 100644 --- a/systems/devel-system-armv8b64.morph +++ b/systems/devel-system-armv8b64.morph @@ -62,3 +62,4 @@ configuration-extensions: - install-files - cloud-init - moonshot-kernel +- install-essential-files diff --git a/systems/devel-system-armv8l64.morph b/systems/devel-system-armv8l64.morph index e84caa74..b5765cac 100644 --- a/systems/devel-system-armv8l64.morph +++ b/systems/devel-system-armv8l64.morph @@ -63,3 +63,4 @@ configuration-extensions: - cloud-init - moonshot-kernel - fstab +- install-essential-files diff --git a/systems/devel-system-ppc64-chroot.morph b/systems/devel-system-ppc64-chroot.morph index 44df4803..a2baa9e0 100644 --- a/systems/devel-system-ppc64-chroot.morph +++ b/systems/devel-system-ppc64-chroot.morph @@ -55,3 +55,4 @@ configuration-extensions: - nfsboot - install-files - fstab +- install-essential-files diff --git a/systems/devel-system-ppc64-generic.morph b/systems/devel-system-ppc64-generic.morph index a6bf2f0d..dd009bc1 100644 --- a/systems/devel-system-ppc64-generic.morph +++ b/systems/devel-system-ppc64-generic.morph @@ -58,3 +58,4 @@ configuration-extensions: - nfsboot - install-files - fstab +- install-essential-files diff --git a/systems/devel-system-x86_32-chroot.morph b/systems/devel-system-x86_32-chroot.morph index 1cc2add1..f263897e 100644 --- a/systems/devel-system-x86_32-chroot.morph +++ b/systems/devel-system-x86_32-chroot.morph @@ -57,3 +57,4 @@ configuration-extensions: - nfsboot - install-files - fstab +- install-essential-files diff --git a/systems/devel-system-x86_32-generic.morph b/systems/devel-system-x86_32-generic.morph index 8baf62aa..05fa6dcc 100644 --- a/systems/devel-system-x86_32-generic.morph +++ b/systems/devel-system-x86_32-generic.morph @@ -63,3 +63,4 @@ configuration-extensions: - install-files - cloud-init - fstab +- install-essential-files diff --git a/systems/devel-system-x86_64-chroot.morph b/systems/devel-system-x86_64-chroot.morph index 8e8ff87a..e2f9e20a 100644 --- a/systems/devel-system-x86_64-chroot.morph +++ b/systems/devel-system-x86_64-chroot.morph @@ -59,3 +59,4 @@ configuration-extensions: - nfsboot - install-files - fstab +- install-essential-files diff --git a/systems/devel-system-x86_64-generic.morph b/systems/devel-system-x86_64-generic.morph index 0f4bb371..ac6b52d5 100644 --- a/systems/devel-system-x86_64-generic.morph +++ b/systems/devel-system-x86_64-generic.morph @@ -64,3 +64,4 @@ configuration-extensions: - install-files - cloud-init - fstab +- install-essential-files diff --git a/systems/devel-system-x86_64-vagrant.morph b/systems/devel-system-x86_64-vagrant.morph index 4c3e0b33..a69028c2 100644 --- a/systems/devel-system-x86_64-vagrant.morph +++ b/systems/devel-system-x86_64-vagrant.morph @@ -61,3 +61,4 @@ configuration-extensions: - install-files - vagrant - fstab +- install-essential-files diff --git a/systems/genivi-baseline-system-armv7lhf-jetson.morph b/systems/genivi-baseline-system-armv7lhf-jetson.morph index 512248e2..9306426d 100644 --- a/systems/genivi-baseline-system-armv7lhf-jetson.morph +++ b/systems/genivi-baseline-system-armv7lhf-jetson.morph @@ -44,3 +44,4 @@ configuration-extensions: - install-files - strip-gplv3 - fstab +- install-essential-files diff --git a/systems/genivi-baseline-system-armv7lhf-versatile.morph b/systems/genivi-baseline-system-armv7lhf-versatile.morph index ee089536..698230bb 100644 --- a/systems/genivi-baseline-system-armv7lhf-versatile.morph +++ b/systems/genivi-baseline-system-armv7lhf-versatile.morph @@ -42,3 +42,4 @@ configuration-extensions: - install-files - strip-gplv3 - fstab +- install-essential-files diff --git a/systems/genivi-baseline-system-x86_64-generic.morph b/systems/genivi-baseline-system-x86_64-generic.morph index d50068e9..f04485bc 100644 --- a/systems/genivi-baseline-system-x86_64-generic.morph +++ b/systems/genivi-baseline-system-x86_64-generic.morph @@ -45,3 +45,4 @@ configuration-extensions: - nfsboot - install-files - strip-gplv3 +- install-essential-files diff --git a/systems/installer-system-armv8b64.morph b/systems/installer-system-armv8b64.morph index a5b7355d..726354c9 100644 --- a/systems/installer-system-armv8b64.morph +++ b/systems/installer-system-armv8b64.morph @@ -33,3 +33,4 @@ configuration-extensions: - fstab - installer - moonshot-kernel +- install-essential-files diff --git a/systems/installer-system-x86_64.morph b/systems/installer-system-x86_64.morph index 00ed7c69..3d0ced5d 100644 --- a/systems/installer-system-x86_64.morph +++ b/systems/installer-system-x86_64.morph @@ -32,3 +32,4 @@ configuration-extensions: - install-files - fstab - installer +- install-essential-files diff --git a/systems/minimal-system-x86_32-generic.morph b/systems/minimal-system-x86_32-generic.morph index 6c48361f..785a72a2 100644 --- a/systems/minimal-system-x86_32-generic.morph +++ b/systems/minimal-system-x86_32-generic.morph @@ -18,3 +18,4 @@ configuration-extensions: - nfsboot - install-files - busybox-init +- install-essential-files diff --git a/systems/minimal-system-x86_64-generic.morph b/systems/minimal-system-x86_64-generic.morph index 02fb7deb..9da22ec8 100644 --- a/systems/minimal-system-x86_64-generic.morph +++ b/systems/minimal-system-x86_64-generic.morph @@ -18,3 +18,4 @@ configuration-extensions: - nfsboot - install-files - busybox-init +- install-essential-files diff --git a/systems/nodejs-system-x86_64.morph b/systems/nodejs-system-x86_64.morph index 2692e2fc..d5ebcf30 100644 --- a/systems/nodejs-system-x86_64.morph +++ b/systems/nodejs-system-x86_64.morph @@ -19,3 +19,4 @@ configuration-extensions: - add-config-files - nfsboot - install-files +- install-essential-files diff --git a/systems/openstack-system-x86_64.morph b/systems/openstack-system-x86_64.morph index 631fedb2..67d914af 100644 --- a/systems/openstack-system-x86_64.morph +++ b/systems/openstack-system-x86_64.morph @@ -76,3 +76,4 @@ configuration-extensions: - openstack-ceilometer - fstab - openstack-ironic +- install-essential-files diff --git a/systems/qt4-devel-system-x86_64-generic.morph b/systems/qt4-devel-system-x86_64-generic.morph index 0a98f205..15b85f70 100644 --- a/systems/qt4-devel-system-x86_64-generic.morph +++ b/systems/qt4-devel-system-x86_64-generic.morph @@ -41,3 +41,4 @@ configuration-extensions: - add-config-files - nfsboot - install-files +- install-essential-files diff --git a/systems/qt5-devel-system-x86_64-generic.morph b/systems/qt5-devel-system-x86_64-generic.morph index 0f768536..3cdce60c 100644 --- a/systems/qt5-devel-system-x86_64-generic.morph +++ b/systems/qt5-devel-system-x86_64-generic.morph @@ -43,3 +43,4 @@ configuration-extensions: - add-config-files - nfsboot - install-files +- install-essential-files diff --git a/systems/swift-system-x86_64.morph b/systems/swift-system-x86_64.morph index 442c2609..81738558 100644 --- a/systems/swift-system-x86_64.morph +++ b/systems/swift-system-x86_64.morph @@ -31,3 +31,4 @@ configuration-extensions: - install-files - fstab - swift-storage +- install-essential-files diff --git a/systems/trove-system-x86_64.morph b/systems/trove-system-x86_64.morph index 5881cb51..0a5692f5 100644 --- a/systems/trove-system-x86_64.morph +++ b/systems/trove-system-x86_64.morph @@ -54,3 +54,4 @@ configuration-extensions: - fstab - install-files - cloud-init +- install-essential-files diff --git a/systems/web-system-x86_64-generic.morph b/systems/web-system-x86_64-generic.morph index 22aa88c0..0b6e84b1 100644 --- a/systems/web-system-x86_64-generic.morph +++ b/systems/web-system-x86_64-generic.morph @@ -34,3 +34,4 @@ configuration-extensions: - add-config-files - nfsboot - install-files +- install-essential-files diff --git a/systems/weston-system-armv7lhf-jetson.morph b/systems/weston-system-armv7lhf-jetson.morph index e1979d44..ccb2c3ee 100644 --- a/systems/weston-system-armv7lhf-jetson.morph +++ b/systems/weston-system-armv7lhf-jetson.morph @@ -46,3 +46,4 @@ configuration-extensions: - add-config-files - nfsboot - install-files +- install-essential-files diff --git a/systems/weston-system-x86_64-generic.morph b/systems/weston-system-x86_64-generic.morph index dfa5c3df..84f0bad0 100644 --- a/systems/weston-system-x86_64-generic.morph +++ b/systems/weston-system-x86_64-generic.morph @@ -46,3 +46,4 @@ configuration-extensions: - add-config-files - nfsboot - install-files +- install-essential-files diff --git a/systems/xfce-system.morph b/systems/xfce-system.morph index 9570c1f6..643291d6 100644 --- a/systems/xfce-system.morph +++ b/systems/xfce-system.morph @@ -52,3 +52,4 @@ configuration-extensions: - add-config-files - nfsboot - install-files +- install-essential-files diff --git a/systems/zookeeper-client-x86_64.morph b/systems/zookeeper-client-x86_64.morph index a2d64a63..ad16f056 100644 --- a/systems/zookeeper-client-x86_64.morph +++ b/systems/zookeeper-client-x86_64.morph @@ -23,3 +23,4 @@ configuration-extensions: - simple-network - nfsboot - install-files +- install-essential-files diff --git a/systems/zookeeper-server-x86_64.morph b/systems/zookeeper-server-x86_64.morph index be0a8791..1fbb5456 100644 --- a/systems/zookeeper-server-x86_64.morph +++ b/systems/zookeeper-server-x86_64.morph @@ -23,3 +23,4 @@ configuration-extensions: - simple-network - nfsboot - install-files +- install-essential-files -- cgit v1.2.1