diff --git a/changes/bug24969 b/changes/bug24969
new file mode 100644
index 0000000000000000000000000000000000000000..46b2bae6f4a445e07918787947d4e7d0c659a010
--- /dev/null
+++ b/changes/bug24969
@@ -0,0 +1,3 @@
+  o Minor bugfixes (Linux seccomp2 sandbox):
+    - Allow the nanosleep() system call, which glibc uses to implement
+      sleep() and usleep(). Fixes bug 24969; bugfix on 0.2.5.1-alpha.
diff --git a/src/common/sandbox.c b/src/common/sandbox.c
index 3588f60decc9c11abd8664f9259f00fe24a366a2..440f8722f2975a879d9391457bd67781d410cfb9 100644
--- a/src/common/sandbox.c
+++ b/src/common/sandbox.c
@@ -197,6 +197,9 @@ static int filter_nopar_gen[] = {
     SCMP_SYS(mmap),
 #endif
     SCMP_SYS(munmap),
+#ifdef __NR_nanosleep
+    SCMP_SYS(nanosleep),
+#endif
 #ifdef __NR_prlimit
     SCMP_SYS(prlimit),
 #endif