diff options
author | Tiago Natel de Moura <t.nateldemoura@f5.com> | 2020-11-13 10:48:32 +0000 |
---|---|---|
committer | Tiago Natel de Moura <t.nateldemoura@f5.com> | 2020-11-13 10:48:32 +0000 |
commit | 3837d28f9b7c5d0840d2e4b26f4867b66838d31b (patch) | |
tree | d0911324c83a45b51afcb1c31fced83f844ad987 /src/nxt_process.h | |
parent | d6829cc93b86f10a4ad747bfcc92a9cdfb2c2519 (diff) | |
download | unit-3837d28f9b7c5d0840d2e4b26f4867b66838d31b.tar.gz unit-3837d28f9b7c5d0840d2e4b26f4867b66838d31b.tar.bz2 |
Isolation: added option to disable tmpfs mount.
Now users can disable the default tmpfs mount point
in the rootfs.
{
"isolation": {
"automount": {
"tmpfs": false
}
}
}
Diffstat (limited to 'src/nxt_process.h')
-rw-r--r-- | src/nxt_process.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nxt_process.h b/src/nxt_process.h index ddadb08f..99ba8022 100644 --- a/src/nxt_process.h +++ b/src/nxt_process.h @@ -75,6 +75,7 @@ typedef struct { typedef struct { uint8_t language_deps; /* 1-bit */ + uint8_t tmpfs; /* 1-bit */ } nxt_process_automount_t; |