summarylogtreecommitdiffstats
path: root/linux.install
diff options
context:
space:
mode:
authorKyle De'Vir2019-05-12 04:16:07 +1000
committerKyle De'Vir2019-05-12 04:16:07 +1000
commitbc45d1e5cd18b96461fb104a38143e1609e1c855 (patch)
tree8474ac476b1d397e35e19a8b33683cdaf51d5439 /linux.install
downloadaur-bc45d1e5cd18b96461fb104a38143e1609e1c855.tar.gz
5.1.1
Diffstat (limited to 'linux.install')
-rw-r--r--linux.install19
1 files changed, 19 insertions, 0 deletions
diff --git a/linux.install b/linux.install
new file mode 100644
index 000000000000..6cbfb722522b
--- /dev/null
+++ b/linux.install
@@ -0,0 +1,19 @@
+post_upgrade() {
+ if findmnt --fstab -uno SOURCE /boot &>/dev/null && ! mountpoint -q /boot; then
+ echo "WARNING: /boot appears to be a separate partition but is not mounted."
+ fi
+}
+
+post_install() {
+ echo "While using PDS, priority policies might induce thrashing in memory-starved scenarios, however"
+ echo "thrash-protect can remedy this, therefore, run 'systemctl enable thrash-protect.service', and then reboot."
+}
+
+post_remove() {
+ rm -f boot/initramfs-%PKGBASE%.img
+ rm -f boot/initramfs-%PKGBASE%-fallback.img
+
+ echo "If you no longer wish to use thrash-protect, run 'systemctl disable thrash-protect.service', and then reboot."
+}
+
+# vim:set ft=sh ts=8 sts=2 sw=2 et: