Isolation: added option to disable "procfs" mount.

Now users can disable the default procfs mount point
in the rootfs.

 {
     "isolation": {
         "automount": {
             "procfs": false
         }
     }
 }
This commit is contained in:
Tiago Natel de Moura
2020-11-16 17:56:12 +00:00
parent bbc29df8fe
commit e7d66acda7
3 changed files with 33 additions and 20 deletions

View File

@@ -76,6 +76,7 @@ typedef struct {
typedef struct {
uint8_t language_deps; /* 1-bit */
uint8_t tmpfs; /* 1-bit */
uint8_t procfs; /* 1-bit */
} nxt_process_automount_t;