fix: correct reference to unbound variable in lambda expression
parent
14ba573d53
commit
3d8664bf42
4
buer.scm
4
buer.scm
|
@ -262,11 +262,11 @@
|
||||||
(args '())))
|
(args '())))
|
||||||
`("zzz" "halt" "reboot")))
|
`("zzz" "halt" "reboot")))
|
||||||
(simple-service 'shepherd-status-permissions doas-service-type
|
(simple-service 'shepherd-status-permissions doas-service-type
|
||||||
(map (lambda (arglist)
|
(map (lambda (argument)
|
||||||
(permit (identity ":wheel")
|
(permit (identity ":wheel")
|
||||||
(nopass? #t)
|
(nopass? #t)
|
||||||
(command "herd")
|
(command "herd")
|
||||||
(args (list arg))))
|
(args (list argument))))
|
||||||
`("status" "detailed-status")))
|
`("status" "detailed-status")))
|
||||||
(simple-service 'service-management-permissions doas-service-type
|
(simple-service 'service-management-permissions doas-service-type
|
||||||
(flatmap (lambda (service action)
|
(flatmap (lambda (service action)
|
||||||
|
|
Loading…
Reference in New Issue