logo

apparmor.d

Unnamed repository; edit this file 'description' to name the repository. git clone https://hacktivis.me/git/apparmor.d.git

etc (1287B)


  1. # ------------------------------------------------------------------
  2. #
  3. # Copyright (C) 2020 Christian Boltz
  4. #
  5. # This program is free software; you can redistribute it and/or
  6. # modify it under the terms of version 2 of the GNU General Public
  7. # License published by the Free Software Foundation.
  8. #
  9. # ------------------------------------------------------------------
  10. # @{etc_ro} contains a space-separated list of the system configuration directories.
  11. # Traditionally this means /etc/, but when using a read-only / filesystem and/or
  12. # with the goal of having only user-modified config files in /etc/, directories
  13. # like /usr/etc/ get introduced for storing the default config.
  14. # @{etc_ro} contains directories with configuration files, including read-only directories.
  15. # Do not use @{etc_ro} in rules that allow write access.
  16. @{etc_ro}=/etc/ /usr/etc/
  17. # @{etc_rw} contains directories where writing to configuration files is allowed.
  18. # @{etc_rw} should always be a subset of @{etc_ro}.
  19. #
  20. # Only use @{etc_rw} if the profile allows writing to a configuration file.
  21. # For rules that only allows read access, use @{etc_ro}.
  22. @{etc_rw}=/etc/
  23. # Also, include files in tunables/etc.d/ for site-specific adjustments to
  24. # @{etc_ro} and @{etc_rw}.
  25. include if exists <tunables/etc.d>