1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mattermost_ynh.git synced 2024-09-03 19:36:29 +02:00
This commit is contained in:
Éric Gaspar 2023-03-16 12:44:50 +01:00
parent 7ba1869bb1
commit ab0a513e69
2 changed files with 17 additions and 2 deletions

View file

@ -70,6 +70,21 @@ ram.runtime = "50M"
default = "Team"
[resources]
[resources.sources]
[resources.sources.main]
amd64.url = "https://releases.mattermost.com/7.8.1/mattermost-team-7.8.1-linux-amd64.tar.gz"
amd64.sha256 = "79e0a0f1819ff59165b61cb1aeb4da0104b5cdbe7b32bd88c2a6b44cbd1c8039"
arm64.url = "https://releases.mattermost.com/7.8.1/mattermost-team-7.8.1-linux-arm64.tar.gz"
arm64.sha256 = "60017d20593288e43228196ff57bf13d983482a0fea3b4b6273043cab30e8117"
armhf.url = "https://github.com/SmartHoneybee/ubiquitous-memory/releases/download/v7.5.2/mattermost-v7.5.2-linux-arm.tar.gz"
armhf.sha256 = "b26a4b676ee92ac848fa2993aa67559238ba7d8c1d0e6f7ffdd79ad8fb4942f3"
[resources.sources.enterprise]
amd64.url = "https://releases.mattermost.com/7.8.1/mattermost-enterprise-7.8.1-linux-amd64.tar.gz"
amd64.sha256 = "2a6ce384092fd53a4e947b599cdfe27e4427cc3aa4d6b37e7e5e094ad6516d74"
arm64.url = "https://releases.mattermost.com/7.8.1/mattermost-enterprise-7.8.1-linux-arm64.tar.gz"
arm64.sha256 = "a52fd6f2f9ae5b2c5ffa632239caccfe6f76342edf066ece08761c59597aca08"
[resources.system_user]

View file

@ -18,10 +18,10 @@ ynh_script_progression --message="Setting up source files..." --weight=3
if [ "$version" = "Enterprise" ]; then
# Get Enterprise binary path
ynh_setup_source --dest_dir="$install_dir" --source_id="enterprise_$YNH_ARCH"
ynh_setup_source --dest_dir="$install_dir" --source_id="enterprise"
elif [ "$version" = "Team" ]; then
# Get Team binary path
ynh_setup_source --dest_dir="$install_dir" --source_id="team_$YNH_ARCH"
ynh_setup_source --dest_dir="$install_dir" --source_id="main"
fi
chown -R $app:www-data "$install_dir"