mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-26 13:49:21 +00:00
12 lines
306 B
Bash
12 lines
306 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [[ $BACKEND_PASSWORD ]]; then
|
||
|
TOKEN_FILE="/home/pi/.config/piscsi/piscsi_secret"
|
||
|
mkdir -p /home/pi/.config/piscsi || true
|
||
|
echo $BACKEND_PASSWORD > $TOKEN_FILE
|
||
|
chmod 700 $TOKEN_FILE
|
||
|
/usr/local/bin/piscsi "$@" -P $TOKEN_FILE
|
||
|
else
|
||
|
/usr/local/bin/piscsi "$@"
|
||
|
fi
|