ccnping: add daemon capabilities
diff --git a/net/ccnping/files/patch-wrapper.diff b/net/ccnping/files/patch-wrapper.diff
new file mode 100644
index 0000000..5e68729
--- /dev/null
+++ b/net/ccnping/files/patch-wrapper.diff
@@ -0,0 +1,19 @@
+diff --git ccnpingserver-wrapper ccnpingserver-wrapper
+new file mode 100755
+index 0000000..c0993c8
+--- /dev/null
++++ ccnpingserver-wrapper
+@@ -0,0 +1,13 @@
++#!/bin/sh
++
++# This script should be installed in the same place as ccnd, ccndc, ccndsmoketest, ...
++# adjust the path to get consistency.
++D=`dirname "$0"`
++export PATH="$D:$PATH"
++
++if [ ! -f "$D/../etc/ccnx/ccnpingserver.conf" ]; then
++ sleep 100
++else
++ su - ccnx -c "$D/ccnpingserver `cat $D/../etc/ccnx/ccnpingserver.conf | xargs`"
++fi
++