-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Simplify state setup using enum and add documentation
Signed-off-by: David Runge <[email protected]>
- Loading branch information
Showing
4 changed files
with
341 additions
and
222 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
# SPDX-FileCopyrightText: 2023 David Runge <[email protected]> | ||
# SPDX-License-Identifier: LGPL-3.0-or-later | ||
|
||
# This configuration file documents the built-in defaults for caterpillar | ||
|
||
# Run non-interactively on first start. | ||
# This automatically searches for an update, installs a matching update if found and reboots. | ||
autorun = true | ||
|
||
# The file extension to search for at the top-level or in an override_dir on a mounted filesystem. | ||
bundle_extension = "raucb" | ||
|
||
# The regular expression used to match for block devices discovered by udisks2 over D-Bus. | ||
device_regex = "^/org/freedesktop/UDisks2/block_devices/sd[a-z]{1}[1-9]{1}[0-9]*?$" | ||
interactive_on_first_run = false | ||
|
||
# The name of a directory in which override updates are searched for. | ||
# Valid updates in this directory have precedence over those found in the top-level filesystem. | ||
# This is useful for downgrade scenarios. | ||
override_dir = "override" | ||
reboot = true |
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
Oops, something went wrong.