-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
infra: adjust the containers to use full systemd
The systemd-standalone-sysusers package, which is pre-installed in the containers, conflicts with systemd. Since Anaconda requires systemd as a dependency, this conflict prevents installation during tests. This update ensures that containers use the full systemd package to resolve the dependency issue.
- Loading branch information
Showing
2 changed files
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,10 @@ LABEL [email protected] | |
# the build is invoked by Makefile. | ||
COPY ["anaconda.spec.in", "requirements.txt", "/root/"] | ||
|
||
# Replace standalone systemd package with systemd as these are conflicting | ||
RUN set -ex; \ | ||
dnf swap -y systemd-standalone-sysusers systemd | ||
|
||
# Prepare environment and install build dependencies | ||
RUN set -ex; \ | ||
# disable fedora-cisco repository otherwise freerdp will depend on openh264 from fedora-cisco | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,10 @@ LABEL [email protected] | |
# the build is invoked by Makefile. | ||
COPY ["anaconda.spec.in", "/root/"] | ||
|
||
# Replace standalone systemd package with systemd as these are conflicting | ||
RUN set -ex; \ | ||
dnf swap -y systemd-standalone-sysusers systemd | ||
|
||
# Prepare environment and install build dependencies | ||
RUN set -ex; \ | ||
# disable fedora-cisco repository otherwise freerdp will depend on openh264 from fedora-cisco | ||
|