diff options
author | 2007-03-07 17:46:59 +0000 | |
---|---|---|
committer | 2007-03-07 17:46:59 +0000 | |
commit | f33cc835b7af81a354ecd1e2702716a19dd09229 (patch) | |
tree | 053f2e5fadd72012a6e4a55d19c55a4e09ee5152 /app-emulation | |
parent | Change all instances of [ to [[. (diff) | |
download | gentoo-2-f33cc835b7af81a354ecd1e2702716a19dd09229.tar.gz gentoo-2-f33cc835b7af81a354ecd1e2702716a19dd09229.tar.bz2 gentoo-2-f33cc835b7af81a354ecd1e2702716a19dd09229.zip |
Change all instances of [ to [[.
(Portage version: 2.1.2.1)
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/vmware-workstation/ChangeLog | 6 | ||||
-rw-r--r-- | app-emulation/vmware-workstation/files/vmware-workstation.rc | 34 |
2 files changed, 22 insertions, 18 deletions
diff --git a/app-emulation/vmware-workstation/ChangeLog b/app-emulation/vmware-workstation/ChangeLog index f8bd589d82b6..93f9e1eb1a96 100644 --- a/app-emulation/vmware-workstation/ChangeLog +++ b/app-emulation/vmware-workstation/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emulation/vmware-workstation # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-workstation/ChangeLog,v 1.153 2007/03/05 00:03:08 ikelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-workstation/ChangeLog,v 1.154 2007/03/07 17:46:59 wolf31o2 Exp $ + + 07 Mar 2007; Chris Gianelloni <wolf31o2@gentoo.org> + files/vmware-workstation.rc: + Change all instances of [ to [[. 05 Mar 2007; Mike Auty <ikelos@gentoo.org> files/digest-vmware-workstation-4.5.3.19414-r7, diff --git a/app-emulation/vmware-workstation/files/vmware-workstation.rc b/app-emulation/vmware-workstation/files/vmware-workstation.rc index 210db68d9f0e..9085036aac76 100644 --- a/app-emulation/vmware-workstation/files/vmware-workstation.rc +++ b/app-emulation/vmware-workstation/files/vmware-workstation.rc @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-workstation/files/vmware-workstation.rc,v 1.1 2006/08/04 14:46:55 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-workstation/files/vmware-workstation.rc,v 1.2 2007/03/07 17:46:59 wolf31o2 Exp $ depend() { need localmount @@ -16,22 +16,22 @@ vmware-prettify() { msgtype=0 while read line do - [ "$line" == "" ] && continue - if [ "$msgtype" -le "0" ] + [[ "${line}" == "" ]] && continue + if [[ "${msgtype}" -le "0" ]] then - if [ "$msgtype" == "-1" ] + if [[ "${msgtype}" == "-1" ]] then - ewarn $line + ewarn ${line} continue fi - if [ "${line/*:*/}" == "" ] + if [[ "${line/*:*/}" == "" ]] then - einfon $line + einfon ${line} echo eend 0 msgtype=1 else - ewarn $line + ewarn ${line} msgtype=-1 waserror=1 fi @@ -39,25 +39,25 @@ vmware-prettify() { fi # Strip out anything after the <esc> code - message=`echo $line | sed -e "s/^\(.*\).*$/\1/"` - einfon " $message" + message=`echo ${line} | sed -e "s/^\(.*\).*$/\1/"` + einfon " ${message}" echo - echo $line | grep done > /dev/null + echo ${line} | grep done > /dev/null status=$? - eend $status + eend ${status} - if [ "$status" != "0" ] + if [[ "${status}" != "0" ]] then - logger -p local0.err -t vmware-${state} "$line" - waserror=$status + logger -p local0.err -t vmware-${state} "${line}" + waserror=${status} fi done - if [ "$msgtype" == "-1" ] + if [[ "${msgtype}" == "-1" ]] then eend 1 "VMware is not properly configured! See above." fi - return $waserror + return ${waserror} } start() { |