V8.00.000.2025.06.17
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 41s

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-07-25 18:17:54 +02:00
parent ca9c226afe
commit f8bf9d7aed
7 changed files with 27 additions and 21 deletions

View File

@@ -10,6 +10,8 @@
# SPDX-PackageName: CISS.debian.installer
# SPDX-Security-Contact: security@coresecret.eu
# shellcheck shell=sh
# Firewall script for Dropbear SSH inside initramfs.
# This script runs at the "init-bottom" stage of the early boot process.
#
@@ -21,7 +23,7 @@
PREREQ="dropbear"
prereqs() { echo "$PREREQ"; }
prereqs() { echo "${PREREQ}"; }
case "$1" in
prereqs) prereqs; exit 0 ;;