Remove fake su used in integration tests

This commit is contained in:
Ch3LL 2018-07-27 09:36:23 -04:00
parent 6978ce5d1d
commit d3b7f2cb18
No known key found for this signature in database
GPG Key ID: 132B55A7C13EFA73

View File

@ -1,12 +0,0 @@
#!/bin/bash
# "Fake" su command
#
# Just executes the command without changing effective uid. Used in integration
# tests.
while true; do
shift
test "x$1" == "x-c" && break
test "x$1" == "x" && break
done
shift
exec /bin/bash -c "$@"