mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
system: activate-ptrace-attach: Handle kernels without YAMA support.
* gnu/build/activation.scm (activate-ptrace-attach): Check for the existence of /proc/sys/kernel/yama/ptrace_scope before trying to write to it.
This commit is contained in:
parent
57e95b261b
commit
15f0de0581
1 changed files with 5 additions and 3 deletions
|
@ -369,9 +369,11 @@ (define (activate-ptrace-attach)
|
|||
processes--see Yama.txt in the Linux source tree for the rationale. This
|
||||
sounds like an unacceptable restriction for little or no security
|
||||
improvement."
|
||||
(call-with-output-file "/proc/sys/kernel/yama/ptrace_scope"
|
||||
(lambda (port)
|
||||
(display 0 port))))
|
||||
(let ((file "/proc/sys/kernel/yama/ptrace_scope"))
|
||||
(when (file-exists? file)
|
||||
(call-with-output-file file
|
||||
(lambda (port)
|
||||
(display 0 port))))))
|
||||
|
||||
|
||||
(define %current-system
|
||||
|
|
Loading…
Reference in a new issue