Run as current user

This commit is contained in:
Sergio Bertolin 2016-08-10 07:26:35 +00:00 committed by Lukas Reschke
parent b154c8fa39
commit b7b0f4780c
No known key found for this signature in database
GPG Key ID: B9F6980CF6E759B1
1 changed files with 3 additions and 5 deletions

View File

@ -36,13 +36,11 @@ echo $PHPPID_FED
export TEST_SERVER_URL="http://localhost:$PORT/ocs/"
export TEST_SERVER_FED_URL="http://localhost:$PORT_FED/ocs/"
APACHE_USER=`ps -ef | egrep '(httpd|apache2|apache)' | grep -v \`whoami\` | grep -v root | head -n1 | awk '{print $1}'`
OUTPUT_CREATE_STORAGE=`sudo -u $APACHE_USER ../../occ files_external:create local_storage local null::null -c datadir=./build/integration/local_storage`
OUTPUT_CREATE_STORAGE=`../../occ files_external:create local_storage local null::null -c datadir=./build/integration/local_storage`
ID_STORAGE=`echo $OUTPUT_CREATE_STORAGE | awk {'print $5'}`
sudo -u $APACHE_USER ../../occ files_external:option $ID_STORAGE enable_sharing true
../../occ files_external:option $ID_STORAGE enable_sharing true
vendor/bin/behat -f junit -f pretty $SCENARIO_TO_RUN
RESULT=$?
@ -50,7 +48,7 @@ RESULT=$?
kill $PHPPID
kill $PHPPID_FED
sudo -u $APACHE_USER ../../occ files_external:delete -y $ID_STORAGE
../../occ files_external:delete -y $ID_STORAGE
if [ -z $HIDE_OC_LOGS ]; then
tail "../../data/nextcloud.log"