mirror of
https://github.com/YunoHost-Apps/libreerp_ynh.git
synced 2024-09-03 19:36:13 +02:00
14 lines
239 B
Bash
14 lines
239 B
Bash
#!/bin/bash
|
|
set -eu
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
# Source YunoHost helpers
|
|
. /usr/share/yunohost/helpers
|
|
|
|
# Retrieve arguments
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
# Upgrade official package
|
|
sudo apt-get install odoo -y -qq
|
|
|
|
# TBD
|