blob: cdce25b1a24c5e959fbe75fd397a3b5c179272d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/bash
post_install() {
cat<<INSTALLEOF
This package replaces the old chkboot package and the chkboot-git package.
Check your configuration files and make all the adjustments necessary.
INSTALLEOF
}
post_remove() {
cat<<REMOVEEOF
Remove the "chkboot" from the "HOOKS" section in "/etc/mkinitcpio.conf"
and rebuild the initramfs.
REMOVEEOF
}
post_upgrade() {
cat<<INSTALLEOF
This release introduces a desktop alert script, in /usr/bin/chkboot-desktopalert.
Include this script in your desktop environment or window manager initialization
scripts to get a graphical warning of when your boot files are modified.
INSTALLEOF
}
|