blob: a64b543f770cbdc57fd3ddc34524292e65c0449c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_upgrade() {
if [ "$(vercmp $2 2009.07)" -lt 0 ]; then
echo "==> Adjusting /etc/inittab for transition to /dev/tty standard."
echo "==> Original file saved as /etc/inittab.pacsave"
sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab
fi
if [ "$(vercmp $2 2011.06.1)" -lt 0 ]; then
echo "Blacklisting of modules is no longer supported in rc.conf,"
echo "please add blacklist entries to /etc/modprobe.d/ instead."
fi
echo "adjusting utf8 to utf-8"
echo "Please reboot for the locale adjustment to take affect"
sed -ie "s/[u|U][t|T][[f|F]8/utf-8/g" /etc/rc.conf
}
|