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

Add an initial mkosi config #105

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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,7 @@ Cargo.lock

# .tgz Files are used for creating the image and are auto generated by the script
azure-init.tgz

# Don't check in local tweaks to the mkosi configuration
mkosi.local.conf
.mkosi/
43 changes: 43 additions & 0 deletions mkosi.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# A basic configuration to test azure-init
#
# Currently, this only works when used from an Azure VM since it relies on the
# Azure-provided IMDS and Wireserver instances. In the future we can provide stubs
# so it's easy to test locally or in GitHub actions. We can also add configurations
# for additional distributions.
#
# To use this:
# - Install mkosi
# - Run `mkosi -d fedora` or `mkosi -d debian`
# - Run `sudo mkosi -d fedora boot`
#
# The repository is available under /work
[Output]
BuildDirectory=.mkosi/builddir
CacheDirectory=.mkosi/cache
Format=directory

[Content]
Autologin=yes

Packages=
curl
gdb
sudo
systemd
util-linux

[Host]
# Build an image with `genisoimage -udf -o target/image.iso ovf` where ovf is a
# directory with a valid `ovf-env.xml` file in it. Then uncomment below to add
# the ISO as a CD-ROM in the virtual machine.
#
# This only works with a bootable image.
#QemuArgs=-cdrom target/image.iso

# Boot to a temporary snapshot of the image - changes won't be persisted to the
# image.
Ephemeral=true
# Perform an incremental rebuild of the image
Incremental=true
# Make the source available at runtime
RuntimeBuildSources=yes
Copy link
Collaborator

@dongsupark dongsupark Jul 25, 2024

Choose a reason for hiding this comment

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

How about adding ToolsTree=default here?
On my Debian stable system with systemd 252, mkosi boot does not run because systemd-nspawn version is too low.

See also NEWS:
ToolsTree=default can be used to make sure a recent version of systemd is used to do the image build.

14 changes: 14 additions & 0 deletions mkosi.conf.d/10-debian.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[Match]
Distribution=|debian

[Output]
OutputDirectory=.mkosi/debian-output

[Content]
Packages=
apt
dbus-broker
dbus-user-session
openssh-client
openssh-server
passwd
11 changes: 11 additions & 0 deletions mkosi.conf.d/10-fedora.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[Match]
Distribution=|fedora

[Output]
OutputDirectory=.mkosi/fedora-output

[Content]
Packages=
dnf
openssh
shadow-utils
24 changes: 24 additions & 0 deletions mkosi.postinst.chroot
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/bin/bash
set -e

SUDO_GROUP=$(grep -oP "^%\K\w+" /etc/sudoers)

cat >/etc/systemd/system/azure-init.service <<EOF
[Unit]
Description=azure-init
After=network-online.target
Wants=network-online.target

[Service]
Type=oneshot
Environment="AZURE_INIT_LOG=debug"
Environment="AZURE_INIT_USER_GROUPS=${SUDO_GROUP}"
ExecStart=/work/src/target/debug/azure-init

[Install]
WantedBy=default.target
EOF

cat >/usr/lib/systemd/system-preset/1-azure-init.preset <<EOF
enable azure-init.service
EOF