blob: 4d98c69e3b190fdcaa08d9d94d5ae82ec154b15d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
post_install () {
echo " * To initialize TOMOYO Linux configuration, run"
echo ' /usr/lib/tomoyo/init_policy'
echo ' Also you may pass TOMOYO_trigger kernel boot option'
echo ' if CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER'
echo ' kernel option has wrong value'
echo ''
echo ' * Kernel version >=5.1 is required'
echo " Your version is $(uname -r)"
echo ' WARNING:'
echo ' Using the wrong version may render your system unbootable'
}
post_upgrade () {
echo ' * Kernel version >=5.1 is required'
echo " Your version is $(uname -r)"
echo ' WARNING:'
echo ' Using the wrong version may render your system unbootable'
}
|