-
Notifications
You must be signed in to change notification settings - Fork 14
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
jeremycline
wants to merge
1
commit into
Azure:main
Choose a base branch
from
jeremycline:mkosi-conf
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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 | ||
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
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 |
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
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 |
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
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 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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
.