summaryrefslogtreecommitdiff
path: root/gnu/system/privilege.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/system/privilege.scm')
-rw-r--r--gnu/system/privilege.scm16
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/system/privilege.scm b/gnu/system/privilege.scm
index fe6e60ad7c4..26d9b2fe289 100644
--- a/gnu/system/privilege.scm
+++ b/gnu/system/privilege.scm
@@ -17,6 +17,14 @@
17;;; You should have received a copy of the GNU General Public License 17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. 18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19 19
20;;; Commentary:
21;;;
22;;; Data structures representing privileged programs: binaries with additional
23;;; permissions such as setuid/setgid, or POSIX capabilities. This is meant to
24;;; be used both on the host side and at run time--e.g., in activation snippets.
25;;;
26;;; Code:
27
20(define-module (gnu system privilege) 28(define-module (gnu system privilege)
21 #:use-module (guix records) 29 #:use-module (guix records)
22 #:export (privileged-program 30 #:export (privileged-program
@@ -30,14 +38,6 @@
30 38
31 file-like->setuid-program)) 39 file-like->setuid-program))
32 40
33;;; Commentary:
34;;;
35;;; Data structures representing privileged programs: binaries with additional
36;;; permissions such as setuid/setgid, or POSIX capabilities. This is meant to
37;;; be used both on the host side and at run time--e.g., in activation snippets.
38;;;
39;;; Code:
40
41(define-record-type* <privileged-program> 41(define-record-type* <privileged-program>
42 privileged-program make-privileged-program 42 privileged-program make-privileged-program
43 privileged-program? 43 privileged-program?