qemu-config: added initscript dependencies and dropped killproc in favour of functions from initscripts

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5005 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Marcin Juszkiewicz 2008-08-01 12:56:09 +00:00
parent fda9855095
commit 6f626196ec
2 changed files with 11 additions and 8 deletions

View File

@ -1,7 +1,7 @@
DESCRIPTION = "Adds scripts to use distcc on the host system under qemu"
LICENSE = "GPL"
RDEPENDS = "distcc task-poky-nfs-server fakeroot oprofileui-server rsync bash"
PR = "r15"
PR = "r16"
SRC_URI = "file://distcc.sh \
file://anjuta-remote-run \

View File

@ -1,12 +1,15 @@
#!/bin/sh
### BEGIN INIT INFO
# Provides: hddtemp
# Required-Start: $network
# Required-Stop: $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: OProfile server
# Description:
### END INIT INFO
killproc() { # kill the named process(es)
pid=`/bin/ps -e x |
/bin/grep $1 |
/bin/grep -v grep |
/bin/sed -e 's/^ *//' -e 's/ .*//'`
[ "$pid" != "" ] && kill $pid
}
. /etc/init.d/functions
case "$1" in
start)