mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-22 17:33:12 +00:00
13 lines
280 B
Bash
Executable File
13 lines
280 B
Bash
Executable File
#!/bin/bash
|
|
|
|
chown -R app:app /var/alchemy/Phraseanet/config
|
|
FILE=/var/alchemy/Phraseanet/config/configuration.yml
|
|
if [ -f "$FILE" ]; then
|
|
echo "$FILE exist, skip setup."
|
|
else
|
|
echo "$FILE doesn't exist, entering setup..."
|
|
runuser app -c '/auto-install.sh'
|
|
fi
|
|
|
|
php-fpm
|