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
FROM "quay.io/centos/centos:stream9" | |
RUN dnf -y --setopt="tsflags=nodocs" upgrade && \ | |
dnf -y --setopt="tsflags=nodocs" install wget | |
# https://www.redhat.com/en/blog/rhel-security-sha-1-package-signatures-distrusted-rhel-9 | |
RUN update-crypto-policies --set DEFAULT:SHA1 | |
RUN wget --progress=dot:giga -O bootstrap.cgi \ | |
https://linux.dell.com/repo/hardware/dsu/bootstrap.cgi && \ | |
bash bootstrap.cgi && rm -f bootstrap.cgi | |
RUN dnf -y install dell-system-update -y && \ |
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
Jun 09 19:21:05 example.com systemd[1]: Starting Network Configuration... | |
Jun 09 19:21:05 example.com systemd-networkd[540]: Bus bus-api-network: changing state UNSET → OPENING | |
Jun 09 19:21:05 example.com systemd-networkd[540]: sd-bus: starting bus bus-api-network by connecting to /run/dbus/system_bus_socket... | |
Jun 09 19:21:05 example.com systemd-networkd[540]: Bus bus-api-network: changing state OPENING → AUTHENTICATING | |
Jun 09 19:21:05 example.com systemd-networkd[540]: Registering bus object implementation for path=/org/freedesktop/network1 iface=org.freedesktop.network1.Manager | |
Jun 09 19:21:05 example.com systemd-networkd[540]: Registering bus object implementation for path=/org/freedesktop/network1/link iface=org.freedesktop.network1.Link | |
Jun 09 19:21:05 example.com systemd-networkd[540]: Registering bus object implementation for path=/org/freedesktop/network1/link iface=org.freedesktop.network1.DHCPServer | |
Jun 09 19:21:05 example.com systemd-networkd[540]: Registering bus object implementation for path=/o |