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:
Gianluca Zuccarelli 2022-02-23 11:48:12 +00:00 committed by Christian Kellner
parent b05723a37e
commit 4d83ae9878
2 changed files with 2 additions and 2 deletions

View file

@ -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 {

View file

@ -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 {