mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-22 07:30:24 +00:00
Update init.sh.jinja2
This commit is contained in:
parent
024c4c7aba
commit
09c664614d
1 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@ sudo sed -i "s/POWER_PASSWORD=.*/POWER_PASSWORD=$new_password/g" /data/apps/{{ap
|
|||
# has_app_encrypt
|
||||
has_app_encrypt=$(cat /data/apps/{{app_name}}/.env |grep "APP_ENCRYPT=")
|
||||
if [ $has_app_encrypt != "" ]; then
|
||||
echo "encrypt password" 1>> /tmp/init_debug.txt
|
||||
echo "Encrypt password" 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
|
||||
|
@ -29,7 +29,7 @@ rm -f temp
|
|||
# init APP_URL
|
||||
app_url_replace=$(cat /data/apps/{{app_name}}/.env |grep APP_URL_REPLACE)
|
||||
if [ $app_url_replace == "APP_URL_REPLACE=true" ]; then
|
||||
echo "change APP_URL" 1>> /tmp/init_debug.txt
|
||||
echo "Change APP_URL" 1>> /tmp/init_debug.txt
|
||||
public_ip=`wget -O - https://download.websoft9.com/ansible/get_ip.sh | bash`
|
||||
sudo sed -i "s/APP_URL=.*/APP_URL=$public_ip/g" /data/apps/{{app_name}}/.env
|
||||
else
|
||||
|
@ -43,7 +43,7 @@ sudo docker compose -f /data/apps/{{app_name}}/docker-compose.yml up -d
|
|||
#2 init for applist of special
|
||||
after_path=/data/apps/{{app_name}}/src/after_up.sh
|
||||
if [ -f "$after_path" ]; then
|
||||
echo "after_up execute" 1>> /tmp/init_debug.txt
|
||||
echo "Executing after_up.sh" 1>> /tmp/init_debug.txt
|
||||
bash /data/apps/{{app_name}}/src/after_up.sh
|
||||
else
|
||||
echo "There is not after_up"
|
||||
|
|
Loading…
Reference in a new issue