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

chore: add bootc to all images #581

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
5 changes: 2 additions & 3 deletions packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"android-udev-rules",
"apr",
"apr-util",
"bootc",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My nitpick, lets make the spacing on this line consistent with others. :-)

"distrobox",
"ffmpeg",
"ffmpeg-libs",
Expand Down Expand Up @@ -193,9 +194,7 @@
},
"39": {
"include": {
"all": [
"bootc"
],
"all": [],
"kinoite": [
"xwaylandvideobridge"
]
Expand Down
6 changes: 5 additions & 1 deletion post-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@

set -ouex pipefail

if [[ "$IMAGE_NAME" == "base" ]]; then
if [ "$IMAGE_NAME" == "base" ]; then
systemctl enable getty@tty1
fi

if [ "$FEDORA_MAJOR_VERSION" -ge "40" ]; then
/usr/bin/bootupctl backend generate-update-metadata
fi

systemctl enable rpm-ostreed-automatic.timer
systemctl enable flatpak-system-update.timer

Expand Down
Loading