The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / avahi / S50avahi-daemon
diff --git a/cirros-testvm/src-cirros/buildroot-2015.05/package/avahi/S50avahi-daemon b/cirros-testvm/src-cirros/buildroot-2015.05/package/avahi/S50avahi-daemon
new file mode 100755 (executable)
index 0000000..81ac513
--- /dev/null
@@ -0,0 +1,20 @@
+#!/bin/sh
+#
+# avahi-daemon init script
+
+DAEMON=/usr/sbin/avahi-daemon
+case "$1" in
+    start)
+       $DAEMON -c || $DAEMON -D
+       ;;
+    stop)
+       $DAEMON -c && $DAEMON -k
+       ;;
+    reload)
+       $DAEMON -c && $DAEMON -r
+       ;;
+    *)
+       echo "Usage: S50avahi-daemon {start|stop|reload}" >&2
+       exit 1
+       ;;
+esac