blob: 0eedcea4cc0d0ecc4afd9b1ce73500077d4e0702 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
cat<<EOF
Make sure your kernel support live patching
To check if current running kernel support live patching run:
zgrep -i CONFIG_LIVEPATCH /proc/config.gz
EOF
}
post_upgrade() {
post_install
}
|