distro/rhel86,rhel90: add /tmp mountpoint
The `/tmp` mountpoint was mistakenly left out of the allowlist for previous distros. This commit enables the ability to create the `/tmp` filesystem for the rhel86 & rhel90 distros.
This commit is contained in:
parent
b05723a37e
commit
4d83ae9878
2 changed files with 2 additions and 2 deletions
|
|
@ -37,7 +37,7 @@ const (
|
|||
)
|
||||
|
||||
var mountpointAllowList = []string{
|
||||
"/", "/var", "/opt", "/srv", "/usr", "/app", "/data", "/home",
|
||||
"/", "/var", "/opt", "/srv", "/usr", "/app", "/data", "/home", "/tmp",
|
||||
}
|
||||
|
||||
type distribution struct {
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ const (
|
|||
)
|
||||
|
||||
var mountpointAllowList = []string{
|
||||
"/", "/var", "/opt", "/srv", "/usr", "/app", "/data", "/home",
|
||||
"/", "/var", "/opt", "/srv", "/usr", "/app", "/data", "/home", "/tmp",
|
||||
}
|
||||
|
||||
type distribution struct {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue