=== modified file 'MANIFEST.in'
@@ -1,2 +1,3 @@
include README
-recursive-include lava_dispatcher/default-config *.conf
\ No newline at end of file
+recursive-include lava_dispatcher/default-config *.conf
+include lava_test_shell/*
=== modified file 'doc/changes.rst'
@@ -1,11 +1,11 @@
Version History
***************
-.. _version_0_20:
+.. _version_0_19_1:
-Version 0.20
-============
-* Unreleased
+Version 0.19.1
+==============
+* fixed a packaging issue with lava_test_shell files
.. _version_0_19:
=== modified file 'lava_dispatcher/__init__.py'
@@ -18,4 +18,4 @@
# along
# with this program; if not, see <http://www.gnu.org/licenses>.
-__version__ = (0, 20, 0, "dev", 0)
+__version__ = (0, 19, 1, "final", 0)
=== added file 'lava_test_shell/lava-test-runner.init.d'
@@ -0,0 +1,29 @@
+#!/bin/sh
+
+PATH=/lava/bin:/sbin:/bin:/usr/sbin:/usr/bin
+DAEMON=/lava/bin/lava-test-runner
+NAME="lava-test-runner"
+
+case "$1" in
+ start)
+ echo -n "Starting $NAME: "
+ start-stop-daemon -S -b -n $NAME --exec $DAEMON
+ echo "done"
+ ;;
+ stop)
+ echo -n "Stopping $NAME: "
+ start-stop-daemon -K -n $NAME
+ echo "done"
+ ;;
+ restart)
+ $0 stop
+ $0 start
+ ;;
+ *)
+ echo "Usage: $NAME { start | stop | restart }" >&2
+ exit 1
+ ;;
+esac
+
+exit 0
+