Skip to content

Commit

Permalink
Set seluser to false by default
Browse files Browse the repository at this point in the history
  • Loading branch information
SwikritiT authored and phil-davis committed Nov 3, 2021
1 parent f759376 commit 4d07815
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@ def litmus():
composerInstall(phpVersion) +
installServer(phpVersion, db, params["logLevel"], params["useHttps"]) +
setupLocalStorage(phpVersion) +
fixPermissions(phpVersion, False, False) +
fixPermissions(phpVersion, False) +
createShare(phpVersion) +
owncloudLog("server", "src") +
[
Expand Down Expand Up @@ -1100,7 +1100,7 @@ def dav():
composerInstall(phpVersion) +
installServer(phpVersion, db, params["logLevel"]) +
davInstall(phpVersion, scriptPath) +
fixPermissions(phpVersion, False, False) +
fixPermissions(phpVersion, False) +
owncloudLog("server", "src") +
[
{
Expand Down Expand Up @@ -1371,7 +1371,7 @@ def phpTests(ctx, testType, withCoverage):
installExtraApps(phpVersion, extraAppsDict, dir["server"]) +
setupScality(phpVersion, needScality) +
params["extraSetup"] +
fixPermissions(phpVersion, False, False) +
fixPermissions(phpVersion, False) +
owncloudLog("server", "src") +
[
{
Expand Down Expand Up @@ -2702,7 +2702,7 @@ def setupScality(phpVersion, scalityS3):
] if createExtraBuckets else []),
}]

def fixPermissions(phpVersion, federatedServerNeeded, selUserNeeded, pathOfServerUnderTest = dir["server"]):
def fixPermissions(phpVersion, federatedServerNeeded, selUserNeeded = False, pathOfServerUnderTest = dir["server"]):
return [{
"name": "fix-permissions",
"image": "owncloudci/php:%s" % phpVersion,
Expand Down

0 comments on commit 4d07815

Please sign in to comment.