Skip to content

Commit

Permalink
Merge pull request gardenlinux#2205 from gardenlinux/feat/pxednsca
Browse files Browse the repository at this point in the history
fix: pxe module should include systemd-resolved and ca-certificates
  • Loading branch information
nkraetzschmar authored Jul 12, 2024
2 parents 21c39fc + 34fb797 commit 1461207
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ check() {
}

depends() {
echo "fs-lib dracut-systemd systemd-networkd"
echo "fs-lib dracut-systemd systemd-networkd systemd-resolved"
}

install() {
Expand Down Expand Up @@ -34,4 +34,10 @@ install() {

# clean up
inst_hook cleanup 00 "$moddir/cleanup.sh"

# ca-certificates
if ! inst_simple /etc/ssl/certs/ca-certificates.crt; then
dwarn "GL PXE module, can't install ca-certificates"
exit 1
fi
}
1 change: 1 addition & 0 deletions features/_pxe/pkg.include
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ dosfstools
btrfs-progs
xfsprogs
dracut-network
ca-certificates

0 comments on commit 1461207

Please sign in to comment.