blob: 3f49eb1bb7de13969812430b457709f454d100fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo "To allow other users than root execute rscsi add an entry"
echo "to /etc/default/rscsi or use an \"rscsi\" user"
echo ""
post_upgrade
}
post_upgrade() {
echo "The manual loading (or loading using rc.conf)"
echo "of the 'sg' module is no longer necessary."
echo "It is automatically loaded during boot by systemd-tools (udev 185)."
}
|