Merge tag 'debian/11.0.10.2' into dev

This commit is contained in:
Alexandre Aubin 2022-10-27 15:48:21 +02:00
commit 80cff4bfb6
3 changed files with 25 additions and 1 deletions

6
debian/changelog vendored
View file

@ -16,6 +16,12 @@ yunohost (11.1.0) testing; urgency=low
-- Alexandre Aubin <alex.aubin@mailoo.org> Tue, 25 Oct 2022 17:57:29 +0200
yunohost (11.0.10.2) stable; urgency=low
- Add another trick to autorestart yunohost-api at the end of the upgrade when ran from the api itself... (6f640c08)
-- Alexandre Aubin <alex.aubin@mailoo.org> Thu, 27 Oct 2022 15:46:26 +0200
yunohost (11.0.10.1) stable; urgency=low
- self-upgrade: fix yunohost-api restart which was not triggered @_@ (472e9250)

2
debian/control vendored
View file

@ -27,7 +27,7 @@ Depends: ${python3:Depends}, ${misc:Depends}
, rspamd, opendkim-tools, postsrsd, procmail, mailutils
, redis-server
, acl
, git, curl, wget, cron, unzip, jq, bc, at
, git, curl, wget, cron, unzip, jq, bc, at, procps
, lsb-release, haveged, fake-hwclock, equivs, lsof, whois
Recommends: yunohost-admin
, ntp, inetutils-ping | iputils-ping

18
debian/postinst vendored
View file

@ -38,6 +38,24 @@ do_configure() {
systemctl restart yunohost-api
else
echo "(Delaying the restart of yunohost-api, this should automatically happen after the end of this upgrade)"
cat << EOF | at -M now >/dev/null 2>&1
# Wait for apt / dpkg / yunohost to not be up anymore, hence the upgrade finished
while pgrep -x apt || pgrep -x apt-get || pgrep dpkg || test -e /var/run/moulinette_yunohost.lock;
do
sleep 3
done
# Restart yunohost-api, though only if it wasnt already restarted by something else in the last 60 secs
API_START_TIMESTAMP="\$(date --date="\$(systemctl show yunohost-api | grep ExecMainStartTimestamp= | awk -F= '{print \$2}')" +%s)"
if [ "\$(( \$(date +%s) - \$API_START_TIMESTAMP ))" -ge 60 ];
then
echo "restart" >> /var/log/testalex
systemctl restart yunohost-api
fi
EOF
fi
fi
}