From d8ba46f8e3f2e54cd8996f9a3d7142440d541152 Mon Sep 17 00:00:00 2001 From: Derek Higgins Date: Fri, 26 Jul 2013 10:54:45 +0100 Subject: [PATCH] Install which on Fedora Create an install hook where core utilities can be installed on Fedora. In this case we are installing which. Which is being used by ramdisk/post-install.d/01-ensure-binaries vm/finalise.d/51-grub The absence to which caused the ramdisk build to fail on F19. On Ubuntu which is installed with the package debianutils, this pretty much has to exist on Ubuntu images, so a corresponding package install for ubuntu isn't needed. Fixes Bug 1202612 Change-Id: I847c1619cdab021c9348caed3fa32db64e663e8e --- elements/fedora/install.d/01-install-deps | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 elements/fedora/install.d/01-install-deps diff --git a/elements/fedora/install.d/01-install-deps b/elements/fedora/install.d/01-install-deps new file mode 100755 index 00000000..a9b09e66 --- /dev/null +++ b/elements/fedora/install.d/01-install-deps @@ -0,0 +1,6 @@ +#!/bin/bash + +# Install any packages in this file that may not be in the fedora +# image but could reasonably be expected by other elements + +install-packages which