mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
system: Accept gexps in 'setuid-programs'.
Commit a7ac19851b
led configs such as the
following one, which were previously valid, to be rejected:
(operating-system
;; ...
(setuid-programs (cons #~(string-append #$wireshark "/bin/dumpcap")
%setuid-programs)))
They are now accepted again.
Reported by wonko on #guix.
* gnu/system.scm (%ensure-setuid-program-list): Handle the case where
PROGRAM is not a file-like.
This commit is contained in:
parent
e0bd47b4fd
commit
2826f488e4
1 changed files with 6 additions and 4 deletions
|
@ -1082,11 +1082,13 @@ (define (warn-once)
|
||||||
(set! warned? #t)))
|
(set! warned? #t)))
|
||||||
|
|
||||||
(map (match-lambda
|
(map (match-lambda
|
||||||
((? file-like? program)
|
|
||||||
(warn-once)
|
|
||||||
(setuid-program (program program)))
|
|
||||||
((? setuid-program? program)
|
((? setuid-program? program)
|
||||||
program))
|
program)
|
||||||
|
(program
|
||||||
|
;; PROGRAM is a file-like or a gexp like #~(string-append #$foo
|
||||||
|
;; "/bin/bar").
|
||||||
|
(warn-once)
|
||||||
|
(setuid-program (program program))))
|
||||||
lst))
|
lst))
|
||||||
|
|
||||||
(define %setuid-programs
|
(define %setuid-programs
|
||||||
|
|
Loading…
Reference in a new issue