wok diff bash/receipt @ rev 2399

nscd: improve start script
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 10 09:20:05 2009 +0000 (2009-03-10)
parents 146ee8863ef5
children 8b1a253d2a0e
line diff
     1.1 --- a/bash/receipt	Thu Feb 05 22:30:20 2009 +0100
     1.2 +++ b/bash/receipt	Tue Mar 10 09:20:05 2009 +0000
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="bash"
     1.7 -VERSION="3.2"
     1.8 +VERSION="4.0"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="The GNU bourne SHell."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12 @@ -52,8 +52,8 @@
    1.13  		echo ""
    1.14  		echo "**** Actual SH link : $sh"
    1.15  		echo ""
    1.16 -		echo -n "Do you want Bash for /bin/sh (y/N) ? : "; read anser
    1.17 -		if [ "$anser" == "y" ]; then
    1.18 +		echo -n "Do you want Bash for /bin/sh (yes/No) ? : "; read anser
    1.19 +		if [ "$anser" == "yes" ]; then
    1.20  			echo ""
    1.21  			echo -n "Removin sh link to make a new one pointing on /bin/bash..."
    1.22  			rm $root/bin/sh && ln -s /bin/bash $root/bin/sh