]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
kernel-install: add boilerplate on installed .install files
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 27 Jan 2021 13:10:25 +0000 (14:10 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Thu, 28 Jan 2021 08:55:35 +0000 (09:55 +0100)
Those files distribured, so they should have the same header as
kernel-install itself. Let's fix indentation while at it.

src/kernel-install/00-entry-directory.install
src/kernel-install/50-depmod.install
src/kernel-install/90-loaderentry.install

index 21c09fa69179ff301b8ae3ee65480a2ea156f648..ab616b2823f980888aa63fc9b517551ff15627ec 100644 (file)
@@ -1,6 +1,22 @@
 #!/usr/bin/env bash
 # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
 # ex: ts=8 sw=4 sts=4 et filetype=sh
+# SPDX-License-Identifier: LGPL-2.1-or-later
+#
+# This file is part of systemd.
+#
+# systemd is free software; you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published by
+# the Free Software Foundation; either version 2.1 of the License, or
+# (at your option) any later version.
+#
+# systemd is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public License
+# along with systemd; If not, see <http://www.gnu.org/licenses/>.
 
 COMMAND="$1"
 KERNEL_VERSION="$2"
@@ -13,7 +29,7 @@ if ! [[ $KERNEL_INSTALL_MACHINE_ID ]]; then
 fi
 
 if [[ $COMMAND != add ]]; then
-     exit 0
+    exit 0
 fi
 
 # If the boot dir exists (e.g. $ESP/<machine-id>),
index 3850eacef5cebd00e4014bd66ff00e40564f69bf..2fd959865f2a648698ecf5cb7b28b1fe2274927a 100644 (file)
@@ -1,6 +1,22 @@
 #!/usr/bin/env bash
 # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
 # ex: ts=8 sw=4 sts=4 et filetype=sh
+# SPDX-License-Identifier: LGPL-2.1-or-later
+#
+# This file is part of systemd.
+#
+# systemd is free software; you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published by
+# the Free Software Foundation; either version 2.1 of the License, or
+# (at your option) any later version.
+#
+# systemd is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public License
+# along with systemd; If not, see <http://www.gnu.org/licenses/>.
 
 COMMAND="$1"
 KERNEL_VERSION="$2"
index d096745382354666e15cf58aee4d55c45eb28254..e6c7e99e650e975b9151174619120a47ef2e6f46 100644 (file)
@@ -1,6 +1,22 @@
 #!/usr/bin/env bash
 # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
 # ex: ts=8 sw=4 sts=4 et filetype=sh
+# SPDX-License-Identifier: LGPL-2.1-or-later
+#
+# This file is part of systemd.
+#
+# systemd is free software; you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published by
+# the Free Software Foundation; either version 2.1 of the License, or
+# (at your option) any later version.
+#
+# systemd is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public License
+# along with systemd; If not, see <http://www.gnu.org/licenses/>.
 
 COMMAND="$1"
 KERNEL_VERSION="$2"
@@ -73,11 +89,11 @@ else
 fi
 
 cp "$KERNEL_IMAGE" "$ENTRY_DIR_ABS/linux" &&
-   chown root:root "$ENTRY_DIR_ABS/linux" &&
-   chmod 0644 "$ENTRY_DIR_ABS/linux" || {
-    echo "Could not copy '$KERNEL_IMAGE to '$ENTRY_DIR_ABS/linux'." >&2
-    exit 1
-}
+    chown root:root "$ENTRY_DIR_ABS/linux" &&
+    chmod 0644 "$ENTRY_DIR_ABS/linux" || {
+        echo "Could not copy '$KERNEL_IMAGE to '$ENTRY_DIR_ABS/linux'." >&2
+        exit 1
+    }
 
 INITRD_OPTIONS=( "${@:${INITRD_OPTIONS_START}}" )
 
@@ -89,9 +105,9 @@ for initrd in "${INITRD_OPTIONS[@]}"; do
         cp "${initrd}" "$ENTRY_DIR_ABS/${initrd_basename}" &&
             chown root:root "$ENTRY_DIR_ABS/${initrd_basename}" &&
             chmod 0644 "$ENTRY_DIR_ABS/${initrd_basename}" || {
-             echo "Could not copy '${initrd}' to '$ENTRY_DIR_ABS/${initrd_basename}'." >&2
-             exit 1
-        }
+                echo "Could not copy '${initrd}' to '$ENTRY_DIR_ABS/${initrd_basename}'." >&2
+                exit 1
+            }
     fi
 done