diff options
author | Meiyo Peng <meiyo.peng@gmail.com> | 2019-01-05 21:06:47 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-13 23:30:15 +0100 |
commit | 5144df2c6cd7b7044932311133b49fb84e78e794 (patch) | |
tree | 8d5ec5b6ed34621ee27aa1c93d359091e1422d4a /gnu/system.scm | |
parent | 24a23bea2068c94ba828a04559007d4b957be83b (diff) | |
download | patches-5144df2c6cd7b7044932311133b49fb84e78e794.tar patches-5144df2c6cd7b7044932311133b49fb84e78e794.tar.gz |
system: Add sudoedit to %setuid-programs.
* gnu/system.scm (%setuid-programs): Add sudoedit.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/system.scm')
-rw-r--r-- | gnu/system.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index ee48f48266..09ee88d433 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2015, 2016 Alex Kost <alezost@gmail.com> ;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com> ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com> +;;; Copyright © 2019 Meiyo Peng <meiyo.peng@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -792,6 +793,7 @@ use 'plain-file' instead~%") (file-append inetutils "/bin/ping") (file-append inetutils "/bin/ping6") (file-append sudo "/bin/sudo") + (file-append sudo "/bin/sudoedit") (file-append fuse "/bin/fusermount")))) (define %sudoers-specification |