Update init.sh.jinja2
This commit is contained in:
parent
a8527bfb6f
commit
1726ec1419
1 changed files with 2 additions and 2 deletions
|
@ -17,8 +17,8 @@ fi
|
|||
sudo sed -i "s/POWER_PASSWORD=.*/POWER_PASSWORD=$new_password/g" /data/apps/{{app_name}}/.env
|
||||
# has_app_encrypt
|
||||
has_app_encrypt=$(cat /data/apps/{{app_name}}/.env |grep "APP_ENCRYPT_PASSWORD")
|
||||
if [ "$has_app_encrypt" =~ "APP_ENCRYPT_PASSWORD" ]; then
|
||||
echo "Encrypt password" 1>> /tmp/init_debug.txt
|
||||
if [[ "$has_app_encrypt" =~ "APP_ENCRYPT_PASSWORD" ]]; then
|
||||
echo "Encrypt password: $has_app_encrypt" 1>> /tmp/init_debug.txt
|
||||
app_encrypt_password=$(bash /data/apps/{{app_name}}/src/encrypt.sh $new_password)
|
||||
sudo sed -i "s/APP_ENCRYPT_PASSWORD=.*/APP_ENCRYPT_PASSWORD=$app_encrypt_password/g" /data/apps/{{app_name}}/.env
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue