Dont enable systemd services upon package upgrade
This commit is contained in:
parent
4830cd4b0b
commit
c719403b0c
2 changed files with 1 additions and 14 deletions
|
@ -21,19 +21,6 @@ post_install() {
|
||||||
}
|
}
|
||||||
|
|
||||||
post_upgrade() {
|
post_upgrade() {
|
||||||
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..."
|
msg "Updating font cache..."
|
||||||
mkfontscale /usr/share/fonts/TTF /usr/share/fonts/OTF /usr/share/fonts/misc > /dev/null 2>&1
|
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
|
mkfontdir /usr/share/fonts/TTF /usr/share/fonts/OTF /usr/share/fonts/misc > /dev/null 2>&1
|
||||||
|
|
|
@ -16,7 +16,7 @@ echo ""
|
||||||
|
|
||||||
# Check for keyring update & update as needed
|
# Check for keyring update & update as needed
|
||||||
echo "Checking for keyring update, then update as needed.."
|
echo "Checking for keyring update, then update as needed.."
|
||||||
if pacman -Qs blackarch-keyring; then
|
if pacman -Qq blackarch-keyring; then
|
||||||
sudo pacman -Sy archlinux-keyring blackarch-keyring chaotic-keyring --needed && $upd_cmd
|
sudo pacman -Sy archlinux-keyring blackarch-keyring chaotic-keyring --needed && $upd_cmd
|
||||||
else sudo pacman -Sy archlinux-keyring chaotic-keyring --needed && $upd_cmd
|
else sudo pacman -Sy archlinux-keyring chaotic-keyring --needed && $upd_cmd
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue