Skip to content

Commit

Permalink
overlay: add 40coreos-network dracut module
Browse files Browse the repository at this point in the history
Add coreos-teardown-initramfs-network.service to run after ignition
has finished using initramfs networking, so NetworkManager properly
brings up ignition-configured networking in the real root. Otherwise
the initramfs network persists into the real root.

Signed-off-by: Yu Qi Zhang <[email protected]>
  • Loading branch information
yuqi-zhang committed May 6, 2019
1 parent 9e94fca commit 479b58d
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Clean up the initramfs networking on first boot
# so the real network is being brought up

[Unit]
Description=Tear down initramfs networking
DefaultDependencies=false
After=ignition-files.service

# Make sure ExecStop= runs before we switch root
Conflicts=initrd-switch-root.target umount.target
Before=initrd-switch-root.target

# Make sure if ExecStart= fails, the boot fails
OnFailure=emergency.target
OnFailureJobMode=isolate

[Service]
Type=oneshot
RemainAfterExit=yes
ExecStop=/usr/sbin/coreos-teardown-initramfs-network
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash
set -euo pipefail

# Clean up the interfaces set up in the initramfs
# This mimics the behaviour of dracut's ifdown() in net-lib.sh
if ! [ -z "$(ls /sys/class/net)" ]; then
for f in /sys/class/net/*; do
interface=$(basename "$f")
ip link set $interface down
ip addr flush dev $interface
rm -f -- /tmp/net.$interface.did-setup
done
fi
14 changes: 14 additions & 0 deletions overlay/usr/lib/dracut/modules.d/40coreos-network/module-setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
# ex: ts=8 sw=4 sts=4 et filetype=sh

check() {
return 0
}

install() {
local unit=coreos-teardown-initramfs-network.service
inst_simple "$moddir/$unit" "$systemdsystemunitdir/$unit"
inst_script "$moddir/coreos-teardown-initramfs-network.sh" \
"/usr/sbin/coreos-teardown-initramfs-network"
}

0 comments on commit 479b58d

Please sign in to comment.