From dd2dca58370cf68a11445faec51547f2ccde0292 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 6 May 2020 14:03:53 -0400 Subject: [PATCH] Add more profile contents More parts of OS image profiles. --- confluent_osdeploy/el8/profiles/default/initprofile.sh | 4 ++++ confluent_osdeploy/el8/profiles/default/profile.yaml | 2 ++ confluent_osdeploy/suse15/profiles/default/initprofile.sh | 3 +++ confluent_osdeploy/suse15/profiles/default/profile.yaml | 2 ++ .../ubuntu20.04/profiles/default/initprofile.sh | 3 +++ confluent_osdeploy/ubuntu20.04/profiles/default/profile.yaml | 2 ++ 6 files changed, 16 insertions(+) create mode 100644 confluent_osdeploy/el8/profiles/default/initprofile.sh create mode 100644 confluent_osdeploy/el8/profiles/default/profile.yaml create mode 100644 confluent_osdeploy/suse15/profiles/default/initprofile.sh create mode 100644 confluent_osdeploy/suse15/profiles/default/profile.yaml create mode 100644 confluent_osdeploy/ubuntu20.04/profiles/default/initprofile.sh create mode 100644 confluent_osdeploy/ubuntu20.04/profiles/default/profile.yaml diff --git a/confluent_osdeploy/el8/profiles/default/initprofile.sh b/confluent_osdeploy/el8/profiles/default/initprofile.sh new file mode 100644 index 00000000..b96eb150 --- /dev/null +++ b/confluent_osdeploy/el8/profiles/default/initprofile.sh @@ -0,0 +1,4 @@ +#!/bin/sh +ln -s $1/images/pxeboot/vmlinuz $2/boot/kernel && \ +ln -s $1/images/pxeboot/initrd.img $1/boot/initramfs/distribution + diff --git a/confluent_osdeploy/el8/profiles/default/profile.yaml b/confluent_osdeploy/el8/profiles/default/profile.yaml new file mode 100644 index 00000000..a582ad16 --- /dev/null +++ b/confluent_osdeploy/el8/profiles/default/profile.yaml @@ -0,0 +1,2 @@ +label: %%DISTRO%% %%VERSION%% %%ARCH%% (Default Profile) +kernelargs: quiet diff --git a/confluent_osdeploy/suse15/profiles/default/initprofile.sh b/confluent_osdeploy/suse15/profiles/default/initprofile.sh new file mode 100644 index 00000000..dd8cdd8c --- /dev/null +++ b/confluent_osdeploy/suse15/profiles/default/initprofile.sh @@ -0,0 +1,3 @@ +#!/bin/sh +ln -s $1/1/boot/x86_64/loader/linux $2/boot/kernel && \ +ln -s $1/1/boot/x86_64/loader/initrd $2/boot/initramfs/distribution diff --git a/confluent_osdeploy/suse15/profiles/default/profile.yaml b/confluent_osdeploy/suse15/profiles/default/profile.yaml new file mode 100644 index 00000000..a582ad16 --- /dev/null +++ b/confluent_osdeploy/suse15/profiles/default/profile.yaml @@ -0,0 +1,2 @@ +label: %%DISTRO%% %%VERSION%% %%ARCH%% (Default Profile) +kernelargs: quiet diff --git a/confluent_osdeploy/ubuntu20.04/profiles/default/initprofile.sh b/confluent_osdeploy/ubuntu20.04/profiles/default/initprofile.sh new file mode 100644 index 00000000..5d493bd4 --- /dev/null +++ b/confluent_osdeploy/ubuntu20.04/profiles/default/initprofile.sh @@ -0,0 +1,3 @@ +#!/bin/sh +ln -s $1/casper/vmlinuz $2/boot/kernel && \ +ln -s $1/casper/initrd $2/boot/initramfs/distribution diff --git a/confluent_osdeploy/ubuntu20.04/profiles/default/profile.yaml b/confluent_osdeploy/ubuntu20.04/profiles/default/profile.yaml new file mode 100644 index 00000000..a582ad16 --- /dev/null +++ b/confluent_osdeploy/ubuntu20.04/profiles/default/profile.yaml @@ -0,0 +1,2 @@ +label: %%DISTRO%% %%VERSION%% %%ARCH%% (Default Profile) +kernelargs: quiet