summaryrefslogtreecommitdiff
path: root/libre/systemd/systemd.install
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-10-12 01:21:26 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-10-12 01:22:52 -0300
commita4558e7326c5e814d0e17d6b76f1d8f3b63d8950 (patch)
treee34ce76781011ef3ad2fcbdc64f194ec703a98a2 /libre/systemd/systemd.install
parente923e0eacc2450cdd36efefae84e195cc5e4cfe8 (diff)
downloadabslibre-a4558e7326c5e814d0e17d6b76f1d8f3b63d8950.tar.gz
abslibre-a4558e7326c5e814d0e17d6b76f1d8f3b63d8950.tar.bz2
abslibre-a4558e7326c5e814d0e17d6b76f1d8f3b63d8950.zip
systemd-231-4.parabola1: avoid reexec when upgrading from 231-1.parabola1 - FS#51275 -> https://bugs.archlinux.org/task/51275
Diffstat (limited to 'libre/systemd/systemd.install')
-rw-r--r--libre/systemd/systemd.install12
1 files changed, 5 insertions, 7 deletions
diff --git a/libre/systemd/systemd.install b/libre/systemd/systemd.install
index f2978d973..b59de2008 100644
--- a/libre/systemd/systemd.install
+++ b/libre/systemd/systemd.install
@@ -10,12 +10,6 @@ add_journal_acls() {
:
}
-maybe_reexec() {
- if sd_booted; then
- systemctl --system daemon-reexec
- fi
-}
-
post_common() {
systemd-sysusers
journalctl --update-catalog
@@ -63,7 +57,11 @@ post_install() {
post_upgrade() {
post_common "$@"
- maybe_reexec "$@"
+ # don't reexec if the old version is 231-1 or 231-2.
+ # https://github.com/systemd/systemd/commit/bd64d82c1c
+ if [[ $1 != 231-[12] ]] && sd_booted; then
+ systemctl --system daemon-reexec
+ fi
local v upgrades=(
216-2