-
Notifications
You must be signed in to change notification settings - Fork 35
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
add tools to be able improve ISO for rhel4edge #571
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ RUN dnf -y update && \ | |
dbus-glib \ | ||
diffstat \ | ||
expect \ | ||
file \ | ||
firefox \ | ||
fpaste \ | ||
gcc-c++ \ | ||
|
@@ -19,6 +20,7 @@ RUN dnf -y update && \ | |
gnupg \ | ||
google-noto-cjk-fonts-common \ | ||
intltool \ | ||
isomd5sum \ | ||
jq \ | ||
lcov \ | ||
libappstream-glib \ | ||
|
@@ -27,14 +29,17 @@ RUN dnf -y update && \ | |
libvirt-client \ | ||
libvirt-python3 \ | ||
libXt \ | ||
mtools \ | ||
nc \ | ||
net-tools \ | ||
nodejs-devel \ | ||
npm \ | ||
ostree \ | ||
passwd \ | ||
pigz \ | ||
psmisc \ | ||
procps-ng \ | ||
pykickstart \ | ||
python3 \ | ||
python3-build \ | ||
python3-flake8 \ | ||
|
@@ -48,10 +53,12 @@ RUN dnf -y update && \ | |
rpmdevtools \ | ||
rsync \ | ||
socat \ | ||
syslinux \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is certainly a curious thing to have in the tasks container -- certainly the rhel4edge builds from image builder already have a boot loader? We want to test these images, not apply a dozen hacks to fix their boot. What's that for? |
||
strace \ | ||
tar \ | ||
vim-enhanced \ | ||
virt-install && \ | ||
virt-install \ | ||
xorriso && \ | ||
Comment on lines
-54
to
+61
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
curl -o /tmp/cockpit.spec -s https://raw.githubusercontent.com/cockpit-project/cockpit/main/tools/cockpit.spec && \ | ||
dnf -y builddep --setopt=install_weak_deps=False /tmp/cockpit.spec && \ | ||
rm /tmp/cockpit.spec && \ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you need this for? I'm rather sceptical that this will work in an unprivileged container. You can run
toolbox create --image quay.io/cockpit/tasks -c cockpit
to test it.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is based on dependencies inside podman image what was used before: https://github.com/loadtheaccumulator/fleet-iso-util/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But https://github.com/loadtheaccumulator/fleet-iso-util/blob/main/fleetkick.sh doesn't use ostree anywhere?