mirror of
https://github.com/YunoHost-Apps/snappymail_ynh.git
synced 2024-09-03 20:26:29 +02:00
Fix upgrade.
This commit is contained in:
parent
39f91f807d
commit
ecb110e9ef
2 changed files with 18 additions and 6 deletions
|
@ -61,7 +61,22 @@ ram.runtime = "50M"
|
||||||
main.url = "/"
|
main.url = "/"
|
||||||
|
|
||||||
[resources.apt]
|
[resources.apt]
|
||||||
packages = "mariadb-server, php8.3-uuid, php8.3-imagick, php8.3-sqlite3, php8.3-tidy, php8.3-dom, php8.3-intl, php8.3-mysql, php8.3-curl, php8.3-gd, php8.3-cli, php8.3-xml, php8.3-mbstring, php8.3-ldap"
|
packages = [
|
||||||
|
"mariadb-server",
|
||||||
|
"php8.3-uuid",
|
||||||
|
"php8.3-imagick",
|
||||||
|
"php8.3-sqlite3",
|
||||||
|
"php8.3-tidy",
|
||||||
|
"php8.3-dom",
|
||||||
|
"php8.3-intl",
|
||||||
|
"php8.3-mysql",
|
||||||
|
"php8.3-curl",
|
||||||
|
"php8.3-gd",
|
||||||
|
"php8.3-cli",
|
||||||
|
"php8.3-xml",
|
||||||
|
"php8.3-mbstring",
|
||||||
|
"php8.3-ldap",
|
||||||
|
]
|
||||||
|
|
||||||
[resources.database]
|
[resources.database]
|
||||||
type = "mysql"
|
type = "mysql"
|
||||||
|
|
|
@ -16,9 +16,6 @@ then
|
||||||
mkdir -p $install_dir/app
|
mkdir -p $install_dir/app
|
||||||
# Ugly way to not return an error when moving everything to a subfolter of the same folder https://stackoverflow.com/a/43262922
|
# Ugly way to not return an error when moving everything to a subfolter of the same folder https://stackoverflow.com/a/43262922
|
||||||
find $install_dir -maxdepth 1 -mindepth 1 -not -name app -exec mv -t $install_dir/app {} +
|
find $install_dir -maxdepth 1 -mindepth 1 -not -name app -exec mv -t $install_dir/app {} +
|
||||||
chown $app:www-data $install_dir/app/
|
|
||||||
chown $app:$app -R "$install_dir/app/data/_data_"
|
|
||||||
chmod 600 "$install_dir/app/data/_data_/_default_/configs/application.ini"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
@ -51,8 +48,8 @@ ynh_config_add_logrotate
|
||||||
|
|
||||||
#ynh_config_add --template="application.ini" --destination="$install_dir/app/data/_data_/_default_/configs/application.ini"
|
#ynh_config_add --template="application.ini" --destination="$install_dir/app/data/_data_/_default_/configs/application.ini"
|
||||||
|
|
||||||
chmod 600 "$install_dir/app/data/_data_/_default_/configs/application.ini"
|
chmod -R 600 "$install_dir/app/data"
|
||||||
chown -R $app:$app "$install_dir/app/data/_data_"
|
chown -R $app:$app "$install_dir/app/data"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# SETUP SSO
|
# SETUP SSO
|
||||||
|
|
Loading…
Reference in a new issue