mirror of
https://gitlab.com/cryptsetup/cryptsetup.git
synced 2025-12-16 05:10:03 +01:00
Also fixes one theoretical issue with 'local' keyword for any (if any) POSIX-strictly shell.
7 lines
171 B
Bash
Executable File
7 lines
171 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Route stdout to stderr in initrd. Otherwise output is invisible
|
|
# unless we run in debug mode.
|
|
# shellcheck disable=SC2068
|
|
/sbin/cryptsetup-reencrypt $@ 1>&2
|