mirror of
https://github.com/YunoHost-Apps/wekan_ynh.git
synced 2024-09-03 20:36:09 +02:00
53 lines
883 B
Bash
53 lines
883 B
Bash
|
|
|
|
log() {
|
|
echo "${1}"
|
|
}
|
|
|
|
info() {
|
|
log "[INFO] ${1}"
|
|
}
|
|
|
|
warn() {
|
|
log "[WARN] ${1}"
|
|
}
|
|
|
|
err() {
|
|
log "[ERR] ${1}"
|
|
}
|
|
to_logs() {
|
|
|
|
# When yunohost --verbose or bash -x
|
|
if $_ISVERBOSE; then
|
|
cat
|
|
else
|
|
cat > /dev/null
|
|
fi
|
|
}
|
|
|
|
read_json () {
|
|
sudo python3 -c "import sys, json;print(json.load(open('$1'))['$2'])"
|
|
}
|
|
|
|
read_manifest () {
|
|
if [ -f '../manifest.json' ] ; then
|
|
read_json '../manifest.json' "$1"
|
|
else
|
|
read_json '../settings/manifest.json' "$1"
|
|
fi
|
|
}
|
|
abort_if_up_to_date () {
|
|
version=$(read_json "/etc/yunohost/apps/$YNH_APP_INSTANCE_NAME/manifest.json" 'version' 2> /dev/null || echo '20160501-7')
|
|
last_version=$(read_manifest 'version')
|
|
if [ "${version}" = "${last_version}" ]; then
|
|
info "Up-to-date, nothing to do"
|
|
ynh_die "" 0
|
|
fi
|
|
}
|
|
|
|
|
|
|
|
ynh_version_gt ()
|
|
{
|
|
dpkg --compare-versions "$1" gt "$2"
|
|
}
|