mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-04 04:56:52 +00:00
WIP
This commit is contained in:
parent
80634361bb
commit
bd56b43da5
1 changed files with 13 additions and 13 deletions
|
|
@ -379,22 +379,22 @@ readonly class DockerActionManager {
|
||||||
// Disable seccomp policy if seccomp is enabled in the kernel to fix issues like https://github.com/nextcloud/all-in-one/issues/7308
|
// Disable seccomp policy if seccomp is enabled in the kernel to fix issues like https://github.com/nextcloud/all-in-one/issues/7308
|
||||||
if (!$this->configurationManager->isSeccompDisabled()) {
|
if (!$this->configurationManager->isSeccompDisabled()) {
|
||||||
$seccompProfile = '{
|
$seccompProfile = '{
|
||||||
\"defaultAction\": \"SCMP_ACT_ERRNO\",
|
"defaultAction": "SCMP_ACT_ERRNO",
|
||||||
\"defaultErrnoRet\": 38,
|
"defaultErrnoRet": 38,
|
||||||
\"architectures\": [
|
"architectures": [
|
||||||
\"SCMP_ARCH_X86_64\",
|
"SCMP_ARCH_X86_64",
|
||||||
\"SCMP_ARCH_X86\",
|
"SCMP_ARCH_X86",
|
||||||
\"SCMP_ARCH_X32\",
|
"SCMP_ARCH_X32",
|
||||||
\"SCMP_ARCH_AARCH64\",
|
"SCMP_ARCH_AARCH64",
|
||||||
\"SCMP_ARCH_ARM\"
|
"SCMP_ARCH_ARM"
|
||||||
],
|
],
|
||||||
\"syscalls\": [
|
"syscalls": [
|
||||||
{
|
{
|
||||||
\"names\": [
|
"names": [
|
||||||
\"fchmodat2\"
|
"fchmodat2"
|
||||||
],
|
],
|
||||||
\"action\": \"SCMP_ACT_ERRNO\",
|
"action": "SCMP_ACT_ERRNO",
|
||||||
\"errnoRet\": 38
|
"errnoRet": 38
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}';
|
}';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue