diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-05-29 23:13:11 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-05-29 23:32:46 +0200 |
commit | 8a07c28960d36557ee64a0b15240869fcadfaa7d (patch) | |
tree | 6b6e73be2c59ac56738542f4404477b3e2c84ec5 /gnu/system.scm | |
parent | ef9fc40dda0f14366d0612bcb940f4fe7285e786 (diff) | |
download | patches-8a07c28960d36557ee64a0b15240869fcadfaa7d.tar patches-8a07c28960d36557ee64a0b15240869fcadfaa7d.tar.gz |
system: Add 'fusermount' to the default setuid programs.
* gnu/system.scm (%setuid-programs): Add 'fusermount'.
Diffstat (limited to 'gnu/system.scm')
-rw-r--r-- | gnu/system.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index 06bec40cef..48946af7d9 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -26,6 +26,7 @@ #: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 @@ alias ll='ls -l' (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' |