diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2005-09-04 09:11:11 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2005-09-04 09:11:11 +0000 |
commit | d1246909969a132c5a8b37e72fe24e3712605655 (patch) | |
tree | 593b4b20363d2d6880fbd81ba837e67bd45cb23b | |
parent | remove config profile (diff) | |
download | baselayout-vserver-d1246909969a132c5a8b37e72fe24e3712605655.tar.gz baselayout-vserver-d1246909969a132c5a8b37e72fe24e3712605655.tar.bz2 baselayout-vserver-d1246909969a132c5a8b37e72fe24e3712605655.zip |
minor fix
svn path=/baselayout-vserver/trunk/; revision=31
-rwxr-xr-x | bin/rc-status | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/rc-status b/bin/rc-status index 1f3ab84..6934291 100755 --- a/bin/rc-status +++ b/bin/rc-status @@ -90,11 +90,11 @@ if [[ -z ${runlevel} ]] ; then if [[ -e ${svcdir}/softlevel ]] ; then runlevel=$(<${svcdir}/softlevel) else - ewarn "Could not local current runlevel in ${svcdir}/softlevel" + ewarn "Could not locate current runlevel in ${svcdir}/softlevel" if [[ -d ${runleveldir}/default ]] ; then runlevel=default else - eerror "Your installation is probably broken ... please \`emerge baselayout\`" + eerror "Your installation is probably broken ... please \`emerge baselayout-vserver\`" exit 1 fi ewarn "Assuming current runrevel is '${runlevel}'" |