From 12a760f7b7016fd618cbae8f2bcdb39698465cba Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Tue, 17 Apr 2018 12:54:48 -0400 Subject: [PATCH] Revert "debootstrap: Call update-initramfs explicitly" This currently breaks glean on rackspace, revert until we can figure out why that is. This reverts commit 43bc352c5977272ceadc1ca44d96c086cad59f5c. Change-Id: Iae88a3b0457bab0b8f0fd1febf58732ca95e5dc9 Signed-off-by: Paul Belanger --- .../finalise.d/80-update-initramfs | 38 ------------------- 1 file changed, 38 deletions(-) delete mode 100755 diskimage_builder/elements/debootstrap/finalise.d/80-update-initramfs diff --git a/diskimage_builder/elements/debootstrap/finalise.d/80-update-initramfs b/diskimage_builder/elements/debootstrap/finalise.d/80-update-initramfs deleted file mode 100755 index a02dd649e..000000000 --- a/diskimage_builder/elements/debootstrap/finalise.d/80-update-initramfs +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -# -# Copyright 2017 Andreas Florath -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. -# -if [ "${DIB_DEBUG_TRACE:-0}" -gt 0 ]; then - set -x -fi -set -eu -set -o pipefail - -# Many elements install additional distribution packages. -# In addition the user can provide a set of packages to be installed -# via the '-p' switch. -# Some of them influence the boot process and therefore the initramfs -# needs to be updated. Because the package manager during the image -# creation process is configured not to run package scripts, this needs -# to be done explicitly. -update-initramfs -u - -# Please note that the 'dracut-regenerate' element does a similar job. -# Nevertheless the update-initramfs / mkinitramfs are (currently) the -# standard way for Debian / Ubuntu. -# Also the 'dracut-regenerate' element can currently (Sep 2017) not -# be used with Ubuntu, because of some problems, e.g. it clashes with -# the ubuntu-minimal distribution package (not the DIB element with -# the same name).