evomaintenance: upstream release 0.6.4
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jérémy Lecour 2021-06-17 10:57:07 +02:00 committed by Jérémy Lecour
parent 53eaf085f5
commit fe9b7ee5f7
2 changed files with 7 additions and 4 deletions

View file

@ -26,6 +26,7 @@ The **patch** part changes incrementally at each release.
* apt: store keys in /etc/apt/trusted.gpg.d in ascii format * apt: store keys in /etc/apt/trusted.gpg.d in ascii format
* certbot: sync_remote.sh is configurable * certbot: sync_remote.sh is configurable
* evolinux-base: copy GPG key instead of using apt-key * evolinux-base: copy GPG key instead of using apt-key
* evomaintenance: upstream release 0.6.4
* kvm-host: replace the "kvm-tools" package with scripts deployed by Ansible * kvm-host: replace the "kvm-tools" package with scripts deployed by Ansible
* nodejs: change GPG key name * nodejs: change GPG key name
* ntpd: Add leapfile configuration setting to ntpd on debian 10+ * ntpd: Add leapfile configuration setting to ntpd on debian 10+

View file

@ -4,16 +4,16 @@
# Dependencies (all OS): git postgresql-client # Dependencies (all OS): git postgresql-client
# Dependencies (Debian): sudo # Dependencies (Debian): sudo
# Copyright 2007-2019 Evolix <info@evolix.fr>, Gregory Colpart <reg@evolix.fr>, # Copyright 2007-2021 Evolix <info@evolix.fr>, Gregory Colpart <reg@evolix.fr>,
# Jérémy Lecour <jlecour@evolix.fr> and others. # Jérémy Lecour <jlecour@evolix.fr> and others.
VERSION="0.6.3" VERSION="0.6.4"
show_version() { show_version() {
cat <<END cat <<END
evomaintenance version ${VERSION} evomaintenance version ${VERSION}
Copyright 2007-2019 Evolix <info@evolix.fr>, Copyright 2007-2021 Evolix <info@evolix.fr>,
Gregory Colpart <reg@evolix.fr>, Gregory Colpart <reg@evolix.fr>,
Jérémy Lecour <jlecour@evolix.fr> Jérémy Lecour <jlecour@evolix.fr>
and others. and others.
@ -178,9 +178,11 @@ is_repository_readonly() {
if [ "$(get_system)" = "OpenBSD" ]; then if [ "$(get_system)" = "OpenBSD" ]; then
partition=$(stat -f '%Sd' $1) partition=$(stat -f '%Sd' $1)
mount | grep ${partition} | grep -q "read-only" mount | grep ${partition} | grep -q "read-only"
else elif command -v findmnt >/dev/null; then
mountpoint=$(stat -c '%m' $1) mountpoint=$(stat -c '%m' $1)
findmnt ${mountpoint} --noheadings --output OPTIONS -O ro findmnt ${mountpoint} --noheadings --output OPTIONS -O ro
else
grep /usr /proc/mounts | grep -E '\bro\b'
fi fi
} }
remount_repository_readwrite() { remount_repository_readwrite() {