Skip to content

Commit

Permalink
dracut: add afterburn dracut module
Browse files Browse the repository at this point in the history
Add dracut module to run afterburn in the initramfs, and add an
initial service to fetch hostname on necessary providers (Azure).

Signed-off-by: Yu Qi Zhang <jerzhang@redhat.com>
  • Loading branch information
yuqi-zhang committed Jun 12, 2019
1 parent 4b12bfd commit 8ea0971
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
24 changes: 24 additions & 0 deletions dracut/30afterburn/afterburn-hostname.service
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[Unit]
Description=Afterburn Hostname
# Azure needs to fetch the hostname in the initramfs
ConditionKernelCommandLine=|ignition.platform.id=azure

# This will be firstboot only to set up the correct
# hostname for kube.
ConditionFirstBoot=yes

# We order this service after sysroot has been mounted
# but before ignition-files stage has run, so ignition can
# overwrite the configured hostname with e.g. a static one
# Also order after ignition-remount-sysroot just for
# safety for systems that mount /sysroot ro
After=initrd-root-fs.target
After=ignition-remount-sysroot.service
Before=ignition-files.service

OnFailure=emergency.target
OnFailureJobMode=isolate

[Service]
ExecStart=/usr/bin/afterburn --cmdline --hostname=/sysroot/etc/hostname
Type=oneshot
22 changes: 22 additions & 0 deletions dracut/30afterburn/module-setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/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
}

depends() {
echo systemd network
}

install() {
inst_multiple afterburn

inst_simple "$moddir/afterburn-hostname.service" \
"$systemdutildir/system/afterburn-hostname.service"

mkdir -p "$initdir/$systemdsystemunitdir/initrd.target.requires"

ln -s "../afterburn-hostname.service" "$initdir/$systemdsystemunitdir/initrd.target.requires/afterburn-hostname.service"
}

0 comments on commit 8ea0971

Please sign in to comment.