Re-enable longer RW_PATHS

Looks like the problem comes from the custom mounts overriding this
values

Signed-off-by: Itxaka <itxaka.garcia@spectrocloud.com>
This commit is contained in:
Itxaka
2023-02-22 12:21:02 +01:00
parent 97478bd8ac
commit 9a480df901
2 changed files with 7 additions and 6 deletions

View File

@@ -3,9 +3,8 @@ package constants
import "errors"
func DefaultRWPaths() []string {
// Default RW_PATHS to mount
// If none defined, your system wont even boot probably
return []string{"/var", "/etc", "/srv"}
// Default RW_PATHS to mount if not overriden by the cos-layout.env file
return []string{"/etc", "/root", "/home", "/opt", "/srv", "/usr/local", "/var"}
}
var ErrAlreadyMounted = errors.New("already mounted")