diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-04-22 18:34:46 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2024-04-22 20:38:16 +0200 |
commit | c6aadfdd328b24e07aa46ea4f91f0e86be05de2b (patch) | |
tree | 1390bd62b32b135e13958aa6e2d29e40a14f03c8 /src/ukify/ukify.py | |
parent | test: ensure all architecture ids we define definitely fit into .v/ patterns (diff) | |
download | systemd-c6aadfdd328b24e07aa46ea4f91f0e86be05de2b.tar.xz systemd-c6aadfdd328b24e07aa46ea4f91f0e86be05de2b.zip |
ukify: swap the ordering of config search paths
Let's follow our usual ordering.
Follow-up for a05fa30f88e522101c8412deecd7f598e2254b20.
Diffstat (limited to 'src/ukify/ukify.py')
-rwxr-xr-x | src/ukify/ukify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ukify/ukify.py b/src/ukify/ukify.py index 50d921b7a8..a21fe48437 100755 --- a/src/ukify/ukify.py +++ b/src/ukify/ukify.py @@ -68,7 +68,7 @@ EFI_ARCHES: list[str] = sum(EFI_ARCH_MAP.values(), []) # Default configuration directories and file name. # When the user does not specify one, the directories are searched in this order and the first file found is used. -DEFAULT_CONFIG_DIRS = ['/run/systemd', '/etc/systemd', '/usr/local/lib/systemd', '/usr/lib/systemd'] +DEFAULT_CONFIG_DIRS = ['/etc/systemd', '/run/systemd', '/usr/local/lib/systemd', '/usr/lib/systemd'] DEFAULT_CONFIG_FILE = 'ukify.conf' class Style: |