]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
Add SPDX header to various files with code 1610/head
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 5 Jun 2023 15:04:11 +0000 (17:04 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 5 Jun 2023 15:06:05 +0000 (17:06 +0200)
bin/mkosi
mkosi/btrfs.py
mkosi/config.py
mkosi/log.py
mkosi/run.py
mkosi/types.py

index fd7b3161b46477d5c803f7a060ae488182e198f0..487067e009100f3a199e7cd58aa5f33d4b2835bb 100755 (executable)
--- a/bin/mkosi
+++ b/bin/mkosi
@@ -1,4 +1,5 @@
 #!/usr/bin/env bash
+# SPDX-License-Identifier: LGPL-2.1+
 set -e
 PYTHONPATH="$(dirname "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")")"
 export PYTHONPATH
index 4cc88d62ec2a3e3ce0ec0f20a2b68da8c54b2df6..5affe263582e01ee55e7bef39e6431c89910f891 100644 (file)
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: LGPL-2.1+
+
 import shutil
 from pathlib import Path
 
index 3c526e60fbd5809c4ba40bbef6e49fbe9789c1a6..7e6251c29e9de17d0efc3ec10b533ee34a2c2294 100644 (file)
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: LGPL-2.1+
+
 import argparse
 import base64
 import configparser
index 0ab40c142d9fe11aefb62447de8babe185fcbb6e..152b3f382ba957642415598e8662961df0d75d11 100644 (file)
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: LGPL-2.1+
+
 import contextlib
 import contextvars
 import logging
index 886ddf24aba3d3f1c2c4c0416f60e53caac99dd7..ed224424cbe294952d4841757c9ff230db6eee15 100644 (file)
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: LGPL-2.1+
+
 import asyncio
 import asyncio.tasks
 import ctypes
index e36cae82b46c22524655f80456980b0ccd0a1b68..0648a09279b2b3bf0f3ea6ad452530665d2d2618 100644 (file)
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: LGPL-2.1+
+
 import subprocess
 from pathlib import Path
 from typing import IO, TYPE_CHECKING, Any, Union