diff options
author | James Meyer <james.meyer@operamail.com> | 2012-08-09 00:03:13 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-08-09 00:03:13 (GMT) |
commit | 15699db7cc8429c3f9d7a2b516b91889e010984d (patch) | |
tree | 7ab2a82cb742084678bc48e12ddbf6c111e186f8 /abs/core/initscripts/initscripts.install | |
parent | 140af5d159d16ddd259d4e98b8159f85b2dce62d (diff) | |
download | linhes_pkgbuild-15699db7cc8429c3f9d7a2b516b91889e010984d.zip linhes_pkgbuild-15699db7cc8429c3f9d7a2b516b91889e010984d.tar.gz linhes_pkgbuild-15699db7cc8429c3f9d7a2b516b91889e010984d.tar.bz2 |
initscripts: 07-2012
-shutdown for runit is untested, might need to apply the shutdown patch
Diffstat (limited to 'abs/core/initscripts/initscripts.install')
-rw-r--r-- | abs/core/initscripts/initscripts.install | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/abs/core/initscripts/initscripts.install b/abs/core/initscripts/initscripts.install index a64b543..963713b 100644 --- a/abs/core/initscripts/initscripts.install +++ b/abs/core/initscripts/initscripts.install @@ -8,7 +8,12 @@ post_upgrade() { 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 + if [ "$(vercmp $2 2011.07.2)" -lt 0 ]; then + echo "VERBOSE= in rc.conf no longer has any effect." + echo "Please append 'quiet' to your kernel command line." + fi + if [ "$(vercmp $2 2011.10.1)" -lt 0 ]; then + echo "If using non-bash-compatible shell, please set LANG in /etc/locale.conf," + echo "as LOCALE in /etc/rc.conf no longer works." + fi } |