Delete entry.sh

This commit is contained in:
Pascal Vizeli 2020-02-25 18:38:52 +01:00 committed by GitHub
parent 0212d027fb
commit ae8ddca040
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +0,0 @@
#!/bin/bash
set -e
udevd --daemon
udevadm trigger
if CMD="$(command -v "$1")"; then
shift
exec "$CMD" "$@"
else
echo "Command not found: $1"
exit 1
fi