;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019 Danny Milosavljevic ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu services auditd) #:use-module (gnu services) #:use-module (gnu services configuration) #:use-module (gnu services base) #:use-module (gnu services shepherd) #:use-module (gnu packages admin) #:use-module (guix records) #:use-module (guix gexp) #:use-module (guix packages) #:export (auditd-configuration auditd-service-type)) ; /etc/audit/audit.rules (define-configuration auditd-configuration (audit (package audit) "Audit package.")) (define (auditd-shepherd-service config) (let* ((audit (auditd-configuration-audit config))) (list (shepherd-service (documentation "Auditd allows you to audit file system accesses.") (provision '(auditd)) (start #~(make-forkexec-constructor (list (string-append #$audit "/sbin/auditd")))) (stop #~(make-kill-destructor)))))) (define auditd-service-type (service-type (name 'auditd) (description "Allows auditing file system accesses.") (extensions (list (service-extension shepherd-root-service-type auditd-shepherd-service))) (default-value (auditd-configuration)))) a897f11'>root/gnu/tests.scm
AgeCommit message (Expand)Author
2019-09-23repl, marionette: 'self-quoting?' matches keywords....Ludovic Courtès
2019-03-25accounts: Add default value for the 'home-directory' field of <user-account>....Ludovic Courtès
2018-08-29tests: Warn about test module load failures....Ludovic Courtès
2018-05-28system: Remove uses of the 'title' field of <file-system>....Ludovic Courtès
2018-02-19marionette: Use QEMU's "VM channel" mechanism....Ludovic Courtès
2018-01-09tests: marionette-operating-system: Add initrd parameter and kernel-arguments....Danny Milosavljevic
2017-12-06gnu, doc, tests: Use ‘bootloader-configuration’ everywhere....Tobias Geerinckx-Rice
2017-08-23gnu: bootloader: Deprecate "device" field in favor of "target"....Andy Wingo
2017-05-16bootloader: Add extlinux support....Mathieu Othacehe
2017-05-04tests: Use 'fold-module-public-variables' for discovery....Ludovic Courtès
2017-05-03Add (guix discovery)....Ludovic Courtès
2017-04-01tests: Introduce 'simple-operating-system' and use it....Ludovic Courtès
2016-07-12services: <shepherd-service> no longer has an 'imported-modules' field....Ludovic Courtès
2016-06-27tests: 'marionette-service-type' nows takes a <marionette-configuration>....Ludovic Courtès
2016-06-20tests: Add a mechanism to describe and discover system tests....Ludovic Courtès
2016-06-20tests: Add system installation test....Ludovic Courtès
2016-06-20tests: Fix list of exports in (gnu tests)....Ludovic Courtès
2016-05-04Add (gnu tests) and (gnu build marionette)....Ludovic Courtès