From 87cb98c01d430c7723797ddd340460e530b94e78 Mon Sep 17 00:00:00 2001 From: Gabriela Cervantes Date: Tue, 16 May 2023 15:26:21 +0000 Subject: [PATCH] osbuilder: Fix indentation in rootfs.sh This PR replaces single spaces to tabs in order to fix the indentation of the rootfs script. Fixes #6848 Signed-off-by: Gabriela Cervantes --- tools/osbuilder/rootfs-builder/rootfs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/osbuilder/rootfs-builder/rootfs.sh b/tools/osbuilder/rootfs-builder/rootfs.sh index dde4a07d64..a494cb4406 100755 --- a/tools/osbuilder/rootfs-builder/rootfs.sh +++ b/tools/osbuilder/rootfs-builder/rootfs.sh @@ -207,11 +207,11 @@ docker_extra_args() args+=" -v ${gentoo_local_portage_dir}:/usr/portage/packages" args+=" --volumes-from ${gentoo_portage_container}" ;; - debian | ubuntu | suse) + debian | ubuntu | suse) source /etc/os-release case "$ID" in - fedora | centos | rhel) + fedora | centos | rhel) # Depending on the podman version, we'll face issues when passing # `--security-opt apparmor=unconfined` on a system where not apparmor is not installed. # Because of this, let's just avoid adding this option when the host OS comes from Red Hat.