Skip to content
This repository was archived by the owner on Jan 16, 2024. It is now read-only.

Commit 16d375d

Browse files
committed
Use base64 for START_SCRIPT_BASE64 decode
1 parent 7246a09 commit 16d375d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/etc/one-context.d/net-97-start-script

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ START_SCRIPT_AVAILABLE=no
88
chmod 700 "${TMP_DIR}"
99

1010
if [ -n "$START_SCRIPT_BASE64" ]; then
11-
echo -en "$START_SCRIPT_BASE64" | openssl enc -d -base64 -A > $TMP_FILE
11+
echo -en "$START_SCRIPT_BASE64" | base64 -d > $TMP_FILE
1212
START_SCRIPT_AVAILABLE=yes
1313
elif [ -n "$START_SCRIPT" ]; then
1414
echo -en "$START_SCRIPT" > $TMP_FILE

0 commit comments

Comments
 (0)