diff options
author | Michael Imhof <tantive@gentoo.org> | 2003-01-12 21:59:48 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2003-01-12 21:59:48 +0000 |
commit | 641d3710bacf96e30c30b518a505d093020812c7 (patch) | |
tree | 7d0f5dcd342cdf498a63e56a27a9d01d3d9abc8a /app-sci/zetagrid | |
parent | fixed typo (diff) | |
download | gentoo-2-641d3710bacf96e30c30b518a505d093020812c7.tar.gz gentoo-2-641d3710bacf96e30c30b518a505d093020812c7.tar.bz2 gentoo-2-641d3710bacf96e30c30b518a505d093020812c7.zip |
just another typo...
Diffstat (limited to 'app-sci/zetagrid')
-rw-r--r-- | app-sci/zetagrid/files/zetagrid.init | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/app-sci/zetagrid/files/zetagrid.init b/app-sci/zetagrid/files/zetagrid.init index 9535f723aa8f..2f174ac1070a 100644 --- a/app-sci/zetagrid/files/zetagrid.init +++ b/app-sci/zetagrid/files/zetagrid.init @@ -12,13 +12,12 @@ start() { stop() { ebegin "Stopping zetagrid" - kill ps ax | grep java | grep ZetaClient | sed -e -'s/^\(.\{5\}\).*$/\1/' | tail -1
eend $? "Failed to stop zetagrid" + kill `ps ax | grep java | grep ZetaClient | sed -e 's/^\(.\{5\}\).*$/\1/' | tail -1` + eend $? "Failed to stop zetagrid" } progress() { - if [ ps ax | grep java | grep ZetaClient | sed -e -'s/^\(.\{5\}\).*$/\1/' | tail -1 ] + if [ 'ps ax | grep java | grep ZetaClient | sed -e 's/^\(.\{5\}\).*$/\1/' | tail -1' ] then ebegin "Showing zetagrid progress (Cancel with ^C) " cd ${ZETADIR} |