diff options
Diffstat (limited to 'abs/core/initscripts/initscripts.install')
-rw-r--r-- | abs/core/initscripts/initscripts.install | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/abs/core/initscripts/initscripts.install b/abs/core/initscripts/initscripts.install index 03519cb..2e7b24f 100644 --- a/abs/core/initscripts/initscripts.install +++ b/abs/core/initscripts/initscripts.install @@ -1,3 +1,11 @@ +show_link() { + echo "----" + echo "> You can find all missed scripts and config files on https://bitbucket.org/TZ86/arch-rcscripts" + echo "----" +} + +# arg 1: the new package version +# arg 2: the old package version post_upgrade() { if [ "$(vercmp $2 2011.06.1)" -lt 0 ]; then echo "Blacklisting of modules is no longer supported in rc.conf," @@ -18,9 +26,22 @@ post_upgrade() { echo "> shutdown, respectively. Refer to arch-modules-load(8) and arch-daemons(8)." echo "----" fi - if [ "$(vercmp $2 2012.10.1)" -lt 0 ]; then - echo "----" - echo "> systemd no longer reads MODULES from rc.conf." - echo "----" + if [ "$(vercmp $2 2013.10.1)" -lt 0 ]; then + show_link fi } + +post_install() { + echo "----" + echo "> All localization parameters, network and kernel modules settings has been" + echo "> moved to rc.conf. Systemd configs (such as vconsole.conf) is still supports" + echo "> but is not recommended." + echo + echo "> Please note that now rc.conf overrides systemd configs. If you want keep" + echo "> using systemd configs, just leave the corresponding parameter in rc.conf" + echo "> commented out." + echo "----" + + show_link +} + |