mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
system: Add 'fusermount' to the default setuid programs.
* gnu/system.scm (%setuid-programs): Add 'fusermount'.
This commit is contained in:
parent
ef9fc40dda
commit
8a07c28960
1 changed files with 3 additions and 1 deletions
|
@ -26,6 +26,7 @@ (define-module (gnu system)
|
|||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages bash)
|
||||
#:use-module (gnu packages admin)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages package-management)
|
||||
#:use-module (gnu services)
|
||||
#:use-module (gnu services dmd)
|
||||
|
@ -319,7 +320,8 @@ (define %setuid-programs
|
|||
(list #~(string-append #$shadow "/bin/passwd")
|
||||
#~(string-append #$shadow "/bin/su")
|
||||
#~(string-append #$inetutils "/bin/ping")
|
||||
#~(string-append #$sudo "/bin/sudo"))))
|
||||
#~(string-append #$sudo "/bin/sudo")
|
||||
#~(string-append #$fuse "/bin/fusermount"))))
|
||||
|
||||
(define %sudoers-specification
|
||||
;; Default /etc/sudoers contents: 'root' and all members of the 'wheel'
|
||||
|
|
Loading…
Reference in a new issue