summaryrefslogtreecommitdiffstats
path: root/run.sh.in
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2010-06-02 18:20:03 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2010-06-02 18:25:04 +0200
commitc60d54e06ed08498e9a50ea2aaff68a0646544bc (patch)
tree753ab506c9d4f5c08d3c7a5cf20787369f23ee21 /run.sh.in
parentb1c4d9c1d461e1f14498b81fd4c69a45dbddf8da (diff)
downloadjson-dbus-bridge-examples-c60d54e06ed08498e9a50ea2aaff68a0646544bc.tar.gz
json-dbus-bridge-examples-c60d54e06ed08498e9a50ea2aaff68a0646544bc.tar.xz
[web-gui] add calculator example
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'run.sh.in')
-rwxr-xr-xrun.sh.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/run.sh.in b/run.sh.in
index 065d7f6..acd7d41 100755
--- a/run.sh.in
+++ b/run.sh.in
@@ -10,6 +10,7 @@
finish() {
kill $hello_pid
+ kill $calculator_pid
kill $lighttpd_pid
exit
}
@@ -19,6 +20,9 @@ trap finish SIGINT
"@abs_srcdir@/services/python/hello-world.py" &
hello_pid=$!
+"@abs_srcdir@/services/python/calculator.py" &
+calculator_pid=$!
+
@LIGHTTPD@ -f "@abs_builddir@/lighttpd/lighttpd.conf" -D &
lighttpd_pid=$!