From 7426f066c22a900e8d3058645fcbda67bfd60b64 Mon Sep 17 00:00:00 2001 From: dr460nf1r3 Date: Sat, 3 Jul 2021 15:27:42 +0200 Subject: [PATCH] Add back post-update() actions for now, will be removed at later date. Add post-install notice --- garuda-common-settings.install | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/garuda-common-settings.install b/garuda-common-settings.install index 6f647cf..e6a746d 100644 --- a/garuda-common-settings.install +++ b/garuda-common-settings.install @@ -21,6 +21,25 @@ post_install() { } post_upgrade() { + msg "Disable conflicting services..." + systemctl is-active systemd-swap >/dev/null || systemctl disable --now systemd-swap + systemctl is-active ananicy >/dev/null || systemctl disable --now ananicy + systemctl is-active uresourced >/dev/null || systemctl disable --now uresourced + systemctl is-active irqbalance >/dev/null || systemctl disable --now irqbalance + + msg "Attempting to enable services..." + systemctl is-active btrfs-balance.timer >/dev/null || systemctl enable btrfs-balance.timer + systemctl is-active btrfs-defrag.timer >/dev/null || systemctl enable btrfs-defrag.timer + systemctl is-active btrfs-scrub.timer >/dev/null || systemctl enable btrfs-scrub.timer + systemctl is-active btrfs-trim.timer >/dev/null || systemctl enable btrfs-trim.timer + systemctl is-active fstrim.timer >/dev/null || systemctl enable fstrim.timer + systemctl is-active grub-btrfs.path >/dev/null || systemctl enable grub-btrfs.path + systemctl is-active haveged >/dev/null || systemctl enable haveged + systemctl is-active memavaild >/dev/null || systemctl enable memavaild + systemctl is-active preload >/dev/null || systemctl enable preload + systemctl is-active prelockd >/dev/null || systemctl enable prelockd + systemctl is-active systemd-oomd >/dev/null || systemctl enable systemd-oomd + msg "Updating font cache..." mkfontscale /usr/share/fonts/TTF /usr/share/fonts/OTF /usr/share/fonts/misc > /dev/null 2>&1 mkfontdir /usr/share/fonts/TTF /usr/share/fonts/OTF /usr/share/fonts/misc > /dev/null 2>&1 @@ -33,6 +52,7 @@ post_upgrade() { /bin/sh -c 'dconf update' echo "" - msg "Done!" + msg "Done! + This update replaces systemd-swap with zram-generator, nohang with systemd-oomd & makes irqbalance, uresourced and ananicy optdepends. If please remove the resulting orphans after this update by using the Garuda Assistant option!" echo "" }