diff options
Diffstat (limited to 'src/file/tmpfsfile.cil')
-rw-r--r-- | src/file/tmpfsfile.cil | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/src/file/tmpfsfile.cil b/src/file/tmpfsfile.cil index af2d2c6..d3cbc13 100644 --- a/src/file/tmpfsfile.cil +++ b/src/file/tmpfsfile.cil @@ -1,40 +1,40 @@ -;; SPDX-FileCopyrightText: © 2025 Dominick Grift <dominick.grift@defensec.nl> +;; SPDX-FileCopyrightText: M-BM-) 2025 Dominick Grift <dominick.grift@defensec.nl> ;; SPDX-License-Identifier: Unlicense (in file (block tmpfs - (macro type ((type ARG1)) - (typeattributeset typeattr ARG1)) + (macro type ((type ARG1)) + (typeattributeset typeattr ARG1)) - (blockinherit file.all_macro_template_dirs) - (blockinherit file.all_macro_template_fifo_files) - (blockinherit file.all_macro_template_files) - (blockinherit file.all_macro_template_lnk_files) - (blockinherit file.all_macro_template_sock_files) + (blockinherit file.all_macro_template_dirs) + (blockinherit file.all_macro_template_fifo_files) + (blockinherit file.all_macro_template_files) + (blockinherit file.all_macro_template_lnk_files) + (blockinherit file.all_macro_template_sock_files) - (typeattribute typeattr) + (typeattribute typeattr) - (call file.type (typeattr)) + (call file.type (typeattr)) - (call .tmp.associate_fs (typeattr)) + (call .tmp.associate_fs (typeattr)) - (block base_template + (block base_template - (blockabstract base_template) + (blockabstract base_template) - (blockinherit .file.base_template) + (blockinherit .file.base_template) - (call .file.tmpfs.type (file))) + (call .file.tmpfs.type (file))) - (block template + (block template - (blockabstract template) + (blockabstract template) - (blockinherit .file.macro_template_dirs) - (blockinherit .file.macro_template_fifo_files) - (blockinherit .file.macro_template_files) - (blockinherit .file.macro_template_lnk_files) - (blockinherit .file.macro_template_sock_files) - (blockinherit .file.tmpfs.base_template)))) + (blockinherit .file.macro_template_dirs) + (blockinherit .file.macro_template_fifo_files) + (blockinherit .file.macro_template_files) + (blockinherit .file.macro_template_lnk_files) + (blockinherit .file.macro_template_sock_files) + (blockinherit .file.tmpfs.base_template)))) |