Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove dracut from the IPA rootfs #943

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jenkins/scripts/dynamic_worker_workflow/build_ipa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ METADATA_PATH="/tmp/metadata.txt"

sudo rm -rf "${IPA_BUILD_WORKSPACE}"
# Update apt packages
sudo apt-get update -y
sudo apt-get update -y

# Install required packages
sudo apt-get install --yes python3-pip python3-virtualenv qemu-utils
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#!/bin/bash
#!/usr/bin/env bash

if [ "${DIB_DEBUG_TRACE:-1}" -gt 0 ]; then
if [[ "${DIB_DEBUG_TRACE:-1}" -gt 0 ]]; then
set -x
fi
set -eu
set -o pipefail

sudo rm -rf "$TARGET_ROOT/var/tmp/dracut"*
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash

if [[ "${DIB_DEBUG_TRACE:-1}" -gt 0 ]]; then
set -x
fi
set -eu

sudo dnf remove -y dracut
Loading