* bin/services: look for /usr/bin/kvm in the eucalyptus-nc service

handling
* byobu-status: can't source /bin/true
* re-upload, as bin/services was missing from the previous tarball
This commit is contained in:
Dustin Kirkland 2010-01-07 21:50:10 -06:00
commit a4b508e665
3 changed files with 6 additions and 3 deletions

View file

@ -57,7 +57,7 @@ for i in $SERVICES; do
else
max="$MAX_CORES"
fi
count=$(pgrep -c kvm)
count=$(pgrep -c -f /usr/bin/kvm)
output="$output,NC ($count/$max)"
fi
;;

View file

@ -26,7 +26,7 @@ find_script () {
elif [ -x "/usr/lib/$PKG/$1" ]; then
echo "/usr/lib/$PKG/$1"
else
echo "/bin/true"
echo "/dev/null"
fi
}

5
debian/changelog vendored
View file

@ -1,6 +1,9 @@
byobu (2.45) unreleased; urgency=low
* UNRELEASED
* bin/services: look for /usr/bin/kvm in the eucalyptus-nc service
handling
* byobu-status: can't source /bin/true
* re-upload, as bin/services was missing from the previous tarball
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 07 Jan 2010 18:43:27 -0600