You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
474 B
11 lines
474 B
3 years ago
|
#!/usr/bin/env sh
|
||
|
|
||
|
# Migrate legacy default password
|
||
|
sed -i 's/"multiPassHashed": "70c882380045d35807b45245bd49185991904ff47a5036dfe82103c49f9f0f31"/"multiPass": "'${APP_PASSWORD}'"/' $RTL_CONFIG_PATH/RTL-Config.json
|
||
|
sed -i 's/"multiPass": "moneyprintergobrrr"/"multiPass": "'${APP_PASSWORD}'"/' $RTL_CONFIG_PATH/RTL-Config.json
|
||
|
|
||
|
# Migrate new password placeholder
|
||
|
sed -i 's/$APP_PASSWORD/'${APP_PASSWORD}'/' $RTL_CONFIG_PATH/RTL-Config.json
|
||
|
|
||
|
exec /sbin/tini -g -- node rtl
|